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