subKnobs property

  1. @override
Map<String, ConfigKnob> subKnobs
override

A mapping from a sub-knob name to a corresponding sub-ConfigKnob.

Implementation

@override
Map<String, ConfigKnob<dynamic>> get subKnobs => {
      'Has Enable': hasEnableKnob,
      'Is Fixed Value': isFixedValueKnob,
      if (isFixedValueKnob.value) 'Fixed Value': fixedValueKnob,
      'Width': widthKnob,
      'Increments': incrementsKnob,
    };