DatafeedstatusesCustomBatchResponse.fromJson constructor

DatafeedstatusesCustomBatchResponse.fromJson(
  1. Map json_
)

Implementation

DatafeedstatusesCustomBatchResponse.fromJson(core.Map json_)
  : this(
      entries:
          (json_['entries'] as core.List?)
              ?.map(
                (value) => DatafeedstatusesCustomBatchResponseEntry.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
      kind: json_['kind'] as core.String?,
    );