InputVenueMessageContent constructor

InputVenueMessageContent({
  1. required double latitude,
  2. required double longitude,
  3. required String title,
  4. required String address,
  5. String? foursquareId,
  6. String? foursquareType,
  7. String? googlePlaceId,
  8. String? googlePlaceType,
})

Implementation

InputVenueMessageContent({
  required this.latitude,
  required this.longitude,
  required this.title,
  required this.address,
  this.foursquareId,
  this.foursquareType,
  this.googlePlaceId,
  this.googlePlaceType,
});