OperationForbidden.fromJson constructor

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

Alternate constructor that creates a OperationForbidden from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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