KnobValue<T> constructor

KnobValue<T>({
  1. required T value,
})

An abstract class that represents a control knob.

Consumers can extend this class to create custom knob types.

Implementation

KnobValue({
  required this.value,
});