ReturnaddressCustomBatchResponse.fromJson constructor
ReturnaddressCustomBatchResponse.fromJson(
- Map json_
Implementation
ReturnaddressCustomBatchResponse.fromJson(core.Map json_)
: this(
entries:
(json_['entries'] as core.List?)
?.map(
(value) => ReturnaddressCustomBatchResponseEntry.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
kind: json_['kind'] as core.String?,
);