signInWithGoogle method

Future signInWithGoogle()

Implementation

Future signInWithGoogle() async {
  await _supabaseService.client.auth
      .signInWithOAuth(Provider.google, redirectTo: LOGIN_REDIRECT_URL);
}