toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'user_id'] = this.userId;
json[r'email_address'] = this.emailAddress;
json[r'first_name'] = this.firstName;
json[r'last_name'] = this.lastName;
return json;
}