signOutGoogle method

Future<void> signOutGoogle()

signOutGoogle

Implementation

Future<void> signOutGoogle() async {
  try {
    await googleSignIn!.signOut();
    log(TAG + ", User Signed Out, Google.");
  } catch (error) {
    throw Exception(error);
  }
}