ContactDetail constructor
ContactDetail({
- String? addressLine1,
- String? addressLine2,
- String? city,
- ContactType? contactType,
- CountryCode? countryCode,
- String? email,
- List<
ExtraParam> ? extraParams, - String? fax,
- String? firstName,
- String? lastName,
- String? organizationName,
- String? phoneNumber,
- String? state,
- String? zipCode,
Implementation
ContactDetail({
this.addressLine1,
this.addressLine2,
this.city,
this.contactType,
this.countryCode,
this.email,
this.extraParams,
this.fax,
this.firstName,
this.lastName,
this.organizationName,
this.phoneNumber,
this.state,
this.zipCode,
});