user property

Stream<User> user

Get a stream containing User objects, which returns the user if any authentication state changes occur

Implementation

Stream<User> get user {
  return _auth.authStateChanges();
}