AuthCloudApiError.fido constructor Null safety

AuthCloudApiError.fido(
  1. Map<String, dynamic> json
)

An error that indicates that a FIDO UAF error occurred during the operation.

Params:

  • json: contains the source for instance creation.

Implementation

factory AuthCloudApiError.fido(Map<String, dynamic> json) {
  return AuthCloudApiFidoError.fromJson(json);
}