PendingOutOfBandOperation.fromJson constructor

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

Alternate constructor that creates PendingOutOfBandOperation from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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