PendingOutOfBandOperationsNetworkError.fromJson constructor

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

Alternate constructor that creates a PendingOutOfBandOperationsNetworkError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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