ContactInfo constructor

ContactInfo({
  1. String? contactEmail,
  2. String? dataProtectionOfficerEmail,
  3. String? dataProtectionOfficerName,
  4. String? dataProtectionOfficerPhone,
  5. String? euRepresentativeEmail,
  6. String? euRepresentativeName,
  7. String? euRepresentativePhone,
})

Implementation

ContactInfo({
  this.contactEmail,
  this.dataProtectionOfficerEmail,
  this.dataProtectionOfficerName,
  this.dataProtectionOfficerPhone,
  this.euRepresentativeEmail,
  this.euRepresentativeName,
  this.euRepresentativePhone,
});