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