ListPrivateConnectionsResponse.fromJson constructor
ListPrivateConnectionsResponse.fromJson(
- Map _json
Implementation
ListPrivateConnectionsResponse.fromJson(core.Map _json)
: this(
nextPageToken: _json.containsKey('nextPageToken')
? _json['nextPageToken'] as core.String
: null,
privateConnections: _json.containsKey('privateConnections')
? (_json['privateConnections'] as core.List)
.map((value) => PrivateConnection.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
unreachable: _json.containsKey('unreachable')
? (_json['unreachable'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);