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,
);