ListOfKnobsKnob constructor
- required int count,
- required ConfigKnob generateKnob(
- int index
- String name = 'List',
Creates a new collection of count
knobs, each initially generated by
generateKnob, and named name.
Implementation
ListOfKnobsKnob(
{required int count, required this.generateKnob, this.name = 'List'})
: super(value: count);