CrewAddress constructor

CrewAddress({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. int? crew,
  5. CrewAddressStatus? status,
  6. String? street1,
  7. String? street2,
  8. String? street3,
  9. String? locality,
  10. String? region,
  11. String? postalCode,
  12. String? country,
})

Implementation

CrewAddress({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.crew,
  this.status,
  this.street1,
  this.street2,
  this.street3,
  this.locality,
  this.region,
  this.postalCode,
  this.country,
});