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