toJson method
Implementation
Map<String, dynamic> toJson() => {
if (this.address != null) 'address': this.address!.toJson(),
'email_verified': this.emailVerified,
'locale': this.locale,
'middle_name': this.middleName,
'name': this.name,
'phone_number': this.phoneNumber,
'phone_number_verified': this.phoneNumberVerified,
'updated_at': this.updatedAt,
'website': this.website,
'zoneinfo': this.zoneinfo,
};