InlineQueryResultVenue constructor

InlineQueryResultVenue({
  1. required String id,
  2. required double latitude,
  3. required double longitude,
  4. required String title,
  5. required String address,
  6. String? foursquareId,
  7. String? foursquareType,
  8. String? googlePlaceId,
  9. String? googlePlaceType,
  10. InlineKeyboardMarkup? replyMarkup,
  11. InputMessageContent? inputMessageContent,
  12. String? thumbUrl,
  13. int? thumbWidth,
  14. int? thumbHeight,
})

Basic constructor

Implementation

InlineQueryResultVenue({
  required this.id,
  required this.latitude,
  required this.longitude,
  required this.title,
  required this.address,
  this.foursquareId,
  this.foursquareType,
  this.googlePlaceId,
  this.googlePlaceType,
  this.replyMarkup,
  this.inputMessageContent,
  this.thumbUrl,
  this.thumbWidth,
  this.thumbHeight,
});