ValueChanged<T> typedef

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);