authStateChanges property

Stream<AuthState> authStateChanges

AuthState changes stream.

This stream is used to notify the client when the user's authentication state changes. For example, when the user signs in or out, or when the user's session becomes invalid.

Check AuthState for more details.

Implementation

Stream<AuthState> get authStateChanges =>
    _fetcher._userStreamController.stream;