Venue constructor

Venue({
  1. int? id,
  2. String? name,
  3. String? city,
})

Implementation

Venue({this.id, this.name, this.city});