setState method
Set the BloC state.
Implementation
@protected
void setState(S nextState) {
blocState = nextState;
dispatchState(nextState);
}
Set the BloC state.
@protected
void setState(S nextState) {
blocState = nextState;
dispatchState(nextState);
}