signInWithGoogle method

Future<void> signInWithGoogle()

Signs in with Google.

Implementation

Future<void> signInWithGoogle() async {
  state = const AsyncLoading();
  state = await AsyncValue.guard(
    () => ref.read(authServiceProvider).signInWithGoogle(),
  );
}