setState method

void setState(
  1. T newState
)

Update store state

Implementation

void setState(T newState) {
  _store.setState(newState);
}