ListConnectionProfilesResponse.fromJson constructor
ListConnectionProfilesResponse.fromJson(
- Map json_
Implementation
ListConnectionProfilesResponse.fromJson(core.Map json_)
: this(
connectionProfiles: json_.containsKey('connectionProfiles')
? (json_['connectionProfiles'] as core.List)
.map((value) => ConnectionProfile.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
unreachable: json_.containsKey('unreachable')
? (json_['unreachable'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);