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