Venue constructor

Venue({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. String? code,
  5. String? externalCode,
  6. String? name,
  7. VenueStatus? status,
  8. List<int>? rooms,
  9. List<int>? notes,
  10. List<int>? contacts,
  11. String? street1,
  12. String? street2,
  13. String? street3,
  14. String? locality,
  15. String? region,
  16. String? postalCode,
  17. String? country,
  18. String? phone,
  19. String? airport,
  20. int? market,
})

Implementation

Venue({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.code,
  this.externalCode,
  this.name,
  this.status,
  this.rooms,
  this.notes,
  this.contacts,
  this.street1,
  this.street2,
  this.street3,
  this.locality,
  this.region,
  this.postalCode,
  this.country,
  this.phone,
  this.airport,
  this.market,
});