ContactDetail constructor

ContactDetail({
  1. String? addressLine1,
  2. String? addressLine2,
  3. String? city,
  4. ContactType? contactType,
  5. CountryCode? countryCode,
  6. String? email,
  7. List<ExtraParam>? extraParams,
  8. String? fax,
  9. String? firstName,
  10. String? lastName,
  11. String? organizationName,
  12. String? phoneNumber,
  13. String? state,
  14. 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,
});