FetchStaticIpsResponse.fromJson constructor

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