state property

CoderState<CoderAsyncState<T>> state
final

Holds the current state of the async operation (loading, data, error).

Implementation

final CoderState<CoderAsyncState<T>> state = CoderState(
  CoderAsyncState<T>.idle(),
);