authenticationStatus property

Stream<AuthenticationStatus> authenticationStatus

Returns a Stream<AuthenticationStatus> which can be used to get notified of changes to the authentication state based on the presence/absence of a token.

Implementation

Stream<AuthenticationStatus> get authenticationStatus async* {
  yield _authenticationStatus;
  yield* _controller.stream;
}