authenticateWithServerAuthCode method
Authenticates a user with Google using the serverAuthCode.
Implementation
_i2.Future<_i4.AuthenticationResponse> authenticateWithServerAuthCode(
String authenticationCode,
String? redirectUri,
) =>
caller.callServerEndpoint<_i4.AuthenticationResponse>(
'serverpod_auth.google',
'authenticateWithServerAuthCode',
{
'authenticationCode': authenticationCode,
'redirectUri': redirectUri,
},
);