signInWithGoogleJwt method

Implementation

Future<SignInWithGoogleJwtResult> signInWithGoogleJwt(
    SignInWithGoogleJwtCommandRequest request) async {
  final command = SignInWithGoogleJwtCommand(request);
  final result = await webRequestService.request(command);
  return result.data!;
}