Venue constructor
Venue({
- int? id,
- DateTime? dbDateCreated,
- DateTime? dbDateUpdated,
- String? code,
- String? externalCode,
- String? name,
- VenueStatus? status,
- List<
int> ? rooms, - List<
int> ? notes, - List<
int> ? contacts, - String? street1,
- String? street2,
- String? street3,
- String? locality,
- String? region,
- String? postalCode,
- String? country,
- String? phone,
- String? airport,
- 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,
});