FetchStaticIpsResponse.fromJson constructor

FetchStaticIpsResponse.fromJson(
  1. 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,
      );