status property Null safety

Stream<AuthenticationStatus> status

Stream of AuthenticationStatus which will emit a new value when the authentication status changes.

Implementation

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