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