nextState property

Stream<State> nextState

nextState is a stream which has a payload of the next state value, rather than the StoreChange event

Implementation

Stream<State> get nextState => stream
    .map((StoreChange<State, StateBuilder, dynamic> change) => change.next);