SelectKnobValue<T> constructor

SelectKnobValue<T>({
  1. required T value,
  2. required List<Option<T>> options,
})

A knob that allows the user to select an option from a list of options.

See also:

  • Option, which represents a single option in the list.
  • SelectKnobWidget, which is the widget that displays the knob.

Implementation

SelectKnobValue({
  required super.value,
  required this.options,
});