getTokens method

Future<GoogleSignInTokenData> getTokens({
  1. required String email,
  2. bool? shouldRecoverAuth,
})

Returns the Tokens used to authenticate other API calls.

Implementation

Future<GoogleSignInTokenData> getTokens(
    {required String email, bool? shouldRecoverAuth}) async {
  throw UnimplementedError('getTokens() has not been implemented.');
}