signInWithGoogle method
Signs in with Google.
Implementation
Future<void> signInWithGoogle() async {
state = const AsyncLoading();
state = await AsyncValue.guard(
() => ref.read(authServiceProvider).signInWithGoogle(),
);
}
Signs in with Google.
Future<void> signInWithGoogle() async {
state = const AsyncLoading();
state = await AsyncValue.guard(
() => ref.read(authServiceProvider).signInWithGoogle(),
);
}