AuthenticationError.appAttestationError constructor

AuthenticationError.appAttestationError(
  1. Map<String, dynamic> json
)

The server requires application attestation and there was a problem either obtaining the application attestation information from the Google Cloud APIs, or the server did not accept the contents sent by the SDK.

Params:

  • json: contains the source for instance creation.

Implementation

factory AuthenticationError.appAttestationError(
  Map<String, dynamic> json,
) {
  return AuthenticationAppAttestationError.fromJson(json);
}