AuthenticationAppAttestationError.fromJson constructor

AuthenticationAppAttestationError.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates a AuthenticationAppAttestationError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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