OperationError.unauthorized constructor
- Map<
String, dynamic> json
An error that indicates that the request was not authorized.
Params:
- json: contains the source for instance creation.
Implementation
factory OperationError.unauthorized(Map<String, dynamic> json) {
return OperationUnauthorized.fromJson(json);
}