InlineQueryResultLocation constructor

InlineQueryResultLocation({
  1. required String id,
  2. String type = InlineQueryResult.typeLocation,
  3. required double latitude,
  4. required double longitude,
  5. required String title,
  6. double? horizontalAccuracy,
  7. int? livePeriod,
  8. int? heading,
  9. int? proximityAlertRadius,
  10. InlineKeyboardMarkup? replyMarkup,
  11. InputMessageContent? inputMessageContent,
  12. String? thumbnailUrl,
  13. int? thumbnailWidth,
  14. int? thumbnailHeight,
})

Implementation

InlineQueryResultLocation({
  required this.id,
  this.type = InlineQueryResult.typeLocation,
  required this.latitude,
  required this.longitude,
  required this.title,
  this.horizontalAccuracy,
  this.livePeriod,
  this.heading,
  this.proximityAlertRadius,
  this.replyMarkup,
  this.inputMessageContent,
  this.thumbnailUrl,
  this.thumbnailWidth,
  this.thumbnailHeight,
});