loginWithGoogle method

Future<Result<bool, Exception>> loginWithGoogle()

Implementation

Future<Result<bool, Exception>> loginWithGoogle() async {
  return getLoginResult(() async {
    return await _flutterAuthApi.loginWithGoogle(_appName);
  });
}