toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final contactEmail = this.contactEmail;
final dataProtectionOfficerEmail = this.dataProtectionOfficerEmail;
final dataProtectionOfficerName = this.dataProtectionOfficerName;
final dataProtectionOfficerPhone = this.dataProtectionOfficerPhone;
final euRepresentativeEmail = this.euRepresentativeEmail;
final euRepresentativeName = this.euRepresentativeName;
final euRepresentativePhone = this.euRepresentativePhone;
return {
'contactEmail': ?contactEmail,
'dataProtectionOfficerEmail': ?dataProtectionOfficerEmail,
'dataProtectionOfficerName': ?dataProtectionOfficerName,
'dataProtectionOfficerPhone': ?dataProtectionOfficerPhone,
'euRepresentativeEmail': ?euRepresentativeEmail,
'euRepresentativeName': ?euRepresentativeName,
'euRepresentativePhone': ?euRepresentativePhone,
};
}