ListPeeringsResponse.fromJson constructor
ListPeeringsResponse.fromJson(
- Map json_
Implementation
ListPeeringsResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
peerings: json_.containsKey('peerings')
? (json_['peerings'] as core.List)
.map((value) => Peering.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,
);