Venue constructor

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

Describes a venue

Implementation

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