PendingOutOfBandOperationsError.unknown constructor

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

Unknown operation error, handling not categorized error cases.

Params:

  • json: contains the source for instance creation.

Implementation

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