currentUser property

Stream<AuthUser<T>?> get currentUser

Stream that must emit the current user, or null if there is no current user.

The stream must appear 'cold', meaning it connects to the underlying persistence layer and emits a value upon subscription.

Implementation

Stream<AuthUser<T>?> get currentUser;