Contact constructor
Contact({
- String? email,
- String? faxNumber,
- String? phoneNumber,
- PostalAddress? postalAddress,
Implementation
Contact({
this.email,
this.faxNumber,
this.phoneNumber,
this.postalAddress,
});