OutOfBandOperationError.serverCanceledOperation constructor

OutOfBandOperationError.serverCanceledOperation(
  1. Map<String, dynamic> json
)

The error that occurs when the server canceled the operation.

Params:

  • json: contains the source for instance creation.

Implementation

factory OutOfBandOperationError.serverCanceledOperation(
  Map<String, dynamic> json,
) {
  return OutOfBandOperationServerCanceledOperation.fromJson(json);
}