InlineQueryResultLocation constructor
const
InlineQueryResultLocation({})
InlineQueryResultLocation (inlineQueryResultLocation) - child of InlineQueryResult
Represents a point on the map.
id: Unique identifier of the query result.location: Location result.title: Title of the result.thumbnail: Result thumbnail in JPEG format; may be null (optional).
Implementation
const InlineQueryResultLocation({
required this.id,
required this.location,
required this.title,
this.thumbnail,
});