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