state property

Current AuthenticationState of the app

Implementation

State.AuthenticationState get state => _state;
void state=(AuthenticationState value)

Implementation

set state(State.AuthenticationState value) {
  _state = value;
  _stateStreamController.add(value);
}