InlineQueryResultLocation constructor

const InlineQueryResultLocation({
  1. required String id,
  2. required Location location,
  3. required String title,
  4. Thumbnail? thumbnail,
})

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,
});