GoogleCloudApigeeV1ListApiProxiesResponse.fromJson constructor
GoogleCloudApigeeV1ListApiProxiesResponse.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ListApiProxiesResponse.fromJson(core.Map json_)
: this(
proxies: json_.containsKey('proxies')
? (json_['proxies'] as core.List)
.map((value) => GoogleCloudApigeeV1ApiProxy.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);