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