Venue constructor

Venue({
  1. Location? location,
  2. required String title,
  3. required String address,
  4. required String provider,
  5. required String id,
  6. required String type,
})

Implementation

Venue({
  this.location,
  required this.title,
  required this.address,
  required this.provider,
  required this.id,
  required this.type,
});