OperationAppAttestationError.fromJson constructor

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

Alternate constructor that creates a OperationAppAttestationError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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