isSignedIn method

Future<bool> isSignedIn()

Whether the user is signed in.

Implementation

Future<bool> isSignedIn() async {
  final account = await _ensureSessionRestored();
  return account != null;
}