PendingOutOfBandOperationsError.operationNotSupportedByBackend constructor

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

An error that indicates that the backend does not support the retrieval of out-of-band operations.

Params:

  • json: contains the source for instance creation.

Implementation

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