Contact constructor

Contact({
  1. String? email,
  2. String? faxNumber,
  3. String? phoneNumber,
  4. PostalAddress? postalAddress,
})

Implementation

Contact({
  this.email,
  this.faxNumber,
  this.phoneNumber,
  this.postalAddress,
});