OperationUnknownError.fromJson constructor

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

Alternate constructor that creates a OperationUnknownError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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