toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final nextPageToken = this.nextPageToken;
final profiles = this.profiles;
final totalSize = this.totalSize;
return {
'nextPageToken': ?nextPageToken,
'profiles': ?profiles,
'totalSize': ?totalSize,
};
}