AccountUserProfilesListResponse.fromJson constructor
AccountUserProfilesListResponse.fromJson(
- Map json_
Implementation
AccountUserProfilesListResponse.fromJson(core.Map json_)
: this(
accountUserProfiles: json_.containsKey('accountUserProfiles')
? (json_['accountUserProfiles'] as core.List)
.map((value) => AccountUserProfile.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
);