authenticate method

Future<AuthenticationResponse> authenticate(
  1. String idToken
)

Authenticate a user with a Firebase id token.

Implementation

_i2.Future<_i4.AuthenticationResponse> authenticate(String idToken) =>
    caller.callServerEndpoint<_i4.AuthenticationResponse>(
      'serverpod_auth.firebase',
      'authenticate',
      {'idToken': idToken},
    );