ValueChanged<T> = void Function(T value)
Signature for callbacks that report that an underlying (基础) value has changed.
See also:
- ValueSetter, for callbacks that report that a value has been set.
Implementation
typedef ValueChanged<T> = void Function(T value);