ListProfilesResponse.fromJson constructor
ListProfilesResponse.fromJson(
- Map json_
Implementation
ListProfilesResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
profiles: json_.containsKey('profiles')
? (json_['profiles'] as core.List)
.map((value) => Profile.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
skippedProfiles: json_.containsKey('skippedProfiles')
? json_['skippedProfiles'] as core.int
: null,
);