PendingOutOfBandOperationsUnknownError.fromJson constructor

PendingOutOfBandOperationsUnknownError.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates a PendingOutOfBandOperationsUnknownError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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