signOutGoogle method

Future<void> signOutGoogle()

Signs out the current user from their Google account.

Implementation

Future<void> signOutGoogle() async {
  await GoogleSignIn().signOut();
  print("Google Logged out");
}