ListUserProfilesResult.fromJson constructor
Implementation
factory ListUserProfilesResult.fromJson(Map<String, dynamic> json) {
return ListUserProfilesResult(
userProfiles: (json['userProfiles'] as List)
.whereNotNull()
.map((e) => UserProfileSummary.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['nextToken'] as String?,
);
}