DeviceInformationSyncError.operationNotSupportedByBackend constructor

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

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

Params:

  • json: contains the source for instance creation.

Implementation

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