InlineQueryResultLocation constructor
InlineQueryResultLocation({
- required String id,
- String type = InlineQueryResult.typeLocation,
- required double latitude,
- required double longitude,
- required String title,
- double? horizontalAccuracy,
- int? livePeriod,
- int? heading,
- int? proximityAlertRadius,
- InlineKeyboardMarkup? replyMarkup,
- InputMessageContent? inputMessageContent,
- String? thumbnailUrl,
- int? thumbnailWidth,
- 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,
});