FetchStaticIpsResponse.fromJson constructor
FetchStaticIpsResponse.fromJson(
- Map json_
Implementation
FetchStaticIpsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_['nextPageToken'] as core.String?,
staticIps: (json_['staticIps'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);