FidoUafAttestationInformationError.certificateError constructor

FidoUafAttestationInformationError.certificateError(
  1. Map<String, dynamic> json
)

There was an unexpected error retrieving the certificate information from the device. If this error happens, it should be assumed that only basic surrogate attestation is supported by the device.

Params:

  • json: contains the source for instance creation.

Implementation

factory FidoUafAttestationInformationError.certificateError(
  Map<String, dynamic> json,
) {
  return FidoUafAttestationInformationCertificateError.fromJson(json);
}