inState method

  1. @override
AsyncSnapshot<T> inState(
  1. ConnectionState state
)
override

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

@override
AsyncSnapshot<T> inState(ConnectionState state) => value.inState(state);