OperationError.fido constructor

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

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

Params:

  • json: contains the source for instance creation.

Implementation

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