AsyncSignal<T> constructor

AsyncSignal<T>(
  1. AsyncState<T> value, {
  2. String? debugLabel,
  3. bool autoDispose = false,
})

A Signal that stores value in AsyncState

Implementation

AsyncSignal(
  super.value, {
  super.debugLabel,
  super.autoDispose,
}) : _initialValue = value;