Venue constructor

Venue({
  1. required Location location,
  2. required String title,
  3. required String address,
  4. String? foursquareId,
  5. String? foursquareType,
  6. String? googlePlaceId,
  7. String? googlePlaceType,
})

Implementation

Venue({
  required this.location,
  required this.title,
  required this.address,
  this.foursquareId,
  this.foursquareType,
  this.googlePlaceId,
  this.googlePlaceType,
});