AsyncValueSetter<T> typedef

AsyncValueSetter<T> = Future<void> Function(T value)

Signature for callbacks that report that a value has been set and return a Future that completes when the value has been saved.

See also:

Implementation

typedef AsyncValueSetter<T> = Future<void> Function(T value);