ClientAddress constructor
ClientAddress({
- int? id,
- DateTime? dbDateCreated,
- DateTime? dbDateUpdated,
- int? $client,
- ClientAddressStatus? status,
- ClientAddressType? type,
- String? contactName,
- String? companyName,
- String? street1,
- String? street2,
- String? street3,
- String? locality,
- String? region,
- String? postalCode,
- String? phone,
- String? airport,
- 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,
});