getGoogleUser method

Future<GoogleSignInAccount?>? getGoogleUser()

Implementation

Future<GoogleSignInAccount?>? getGoogleUser() async {
  googleSignOut();
  final GoogleSignInAccount? googleUser = await _googleSignIn.signIn();
  // final GoogleSignInAuthentication googleAuth = await googleUser.authentication;
  // kLog("GoogleSignInAuthentication -> $googleAuth");
  // final headers = await googleUser.authHeaders;
  return googleUser;
}