OperationUnauthorized.fromJson constructor

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

Alternate constructor that creates an OperationUnauthorized from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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