GoogleCloudApigeeV1ListDataCollectorsResponse.fromJson constructor
GoogleCloudApigeeV1ListDataCollectorsResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ListDataCollectorsResponse.fromJson(core.Map json_)
: this(
dataCollectors: (json_['dataCollectors'] as core.List?)
?.map(
(value) => GoogleCloudApigeeV1DataCollector.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);