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