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