AsyncSignal<T> constructor
AsyncSignal<T> (
- AsyncState<
T> value, { - String? debugLabel,
- bool autoDispose = false,
A Signal that stores value in AsyncState
Implementation
AsyncSignal(
super.value, {
super.debugLabel,
super.autoDispose,
}) : _initialValue = value;