ListAppProfilesResponse.fromJson constructor
ListAppProfilesResponse.fromJson(
- Map json_
Implementation
ListAppProfilesResponse.fromJson(core.Map json_)
: this(
appProfiles: json_.containsKey('appProfiles')
? (json_['appProfiles'] as core.List)
.map((value) => AppProfile.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
failedLocations: json_.containsKey('failedLocations')
? (json_['failedLocations'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);