OperationErrorErrors.fromJson constructor
OperationErrorErrors.fromJson(
- Map json_
Implementation
OperationErrorErrors.fromJson(core.Map json_)
: this(
code: json_['code'] as core.String?,
errorDetails: (json_['errorDetails'] as core.List?)
?.map((value) => OperationErrorErrorsErrorDetails.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
location: json_['location'] as core.String?,
message: json_['message'] as core.String?,
);