AsyncValue<T>.loading constructor
const
AsyncValue<T>.loading ()
Creates an AsyncValue in loading state.
Prefer always using this constructor with the const
keyword.
Implementation
// coverage:ignore-start
const factory AsyncValue.loading() = AsyncLoading<T>;