Venue.fromJson constructor
Creates a Venue object from JSON object
Implementation
factory Venue.fromJson(Map<String, dynamic> json) {
return Venue(
location: Location.fromJson(json['location']!),
title: json['title']!,
address: json['address']!,
foursquareId: json['foursquare_id'],
foursquareType: json['foursquare_type'],
googlePlaceId: json['google_place_id'],
googlePlaceType: json['google_place_type'],
);
}