inState method

AsyncSnapshot<T> inState(
  1. ConnectionState state
)

Returns a snapshot like this one, but in the specified state.

The data, error, and stackTrace fields persist unmodified, even if the new state is ConnectionState.none.

Implementation

AsyncSnapshot<T> inState(ConnectionState state) => AsyncSnapshot<T>._(state, data, error, stackTrace);