CrewContact constructor

CrewContact({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. CrewContactType? type,
  5. String? firstName,
  6. String? lastName,
  7. String? email,
  8. String? phone,
  9. String? extension,
  10. String? companyName,
  11. String? jobTitle,
})

Implementation

CrewContact({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.type,
  this.firstName,
  this.lastName,
  this.email,
  this.phone,
  this.extension,
  this.companyName,
  this.jobTitle,
});