VenueContact constructor

VenueContact({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. VenueContactType? type,
  5. int? venue,
  6. String? firstName,
  7. String? lastName,
  8. String? email,
  9. String? mobile,
  10. String? phone,
  11. String? extension,
  12. String? fax,
  13. String? companyName,
  14. String? jobTitle,
})

Implementation

VenueContact({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.type,
  this.venue,
  this.firstName,
  this.lastName,
  this.email,
  this.mobile,
  this.phone,
  this.extension,
  this.fax,
  this.companyName,
  this.jobTitle,
});