DeviceInformationCheckError.operationNotSupportedByBackend constructor

DeviceInformationCheckError.operationNotSupportedByBackend(
  1. Map<String, dynamic> json
)

An error that indicates that the backend does not support the retrieval of the credentials.

Params:

  • json: contains the source for instance creation.

Implementation

factory DeviceInformationCheckError.operationNotSupportedByBackend(
  Map<String, dynamic> json,
) {
  return DeviceInformationCheckOperationNotSupportedByBackend.fromJson(
    json,
  );
}