ClientAddress constructor

ClientAddress({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. int? client,
  5. ClientAddressStatus? status,
  6. ClientAddressType? type,
  7. String? contactName,
  8. String? companyName,
  9. String? street1,
  10. String? street2,
  11. String? street3,
  12. String? locality,
  13. String? region,
  14. String? postalCode,
  15. String? phone,
  16. String? airport,
  17. int? market,
})

Implementation

ClientAddress({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.client,
  this.status,
  this.type,
  this.contactName,
  this.companyName,
  this.street1,
  this.street2,
  this.street3,
  this.locality,
  this.region,
  this.postalCode,
  this.phone,
  this.airport,
  this.market,
});