signOut method

Future<void> signOut()

Implementation

Future<void> signOut() async {
  // Best effort: sign out from Google session too.
  try {
    await _googleSignIn.signOut();
  } on Object {
    // ignore
  }
  await _auth.signOut();
}