toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final profilePhotoUri = this.profilePhotoUri;
final type = this.type;
return {
'displayName': ?displayName,
'profilePhotoUri': ?profilePhotoUri,
'type': ?type,
};
}