isUserSignedIn property

Future<bool> isUserSignedIn

Returns true if the user is signed in.

Implementation

Future<bool> get isUserSignedIn async {
  return (await auth.authenticatedUserId) != null;
}