InlineQueryResults constructor
const
InlineQueryResults({
- required int inlineQueryId,
- InlineQueryResultsButton? button,
- required List<
InlineQueryResult> results, - required String nextOffset,
- dynamic extra,
- int? clientId,
Represents the results of the inline query. Use sendInlineQueryResultMessage to send the result of the query
Implementation
const InlineQueryResults({
required this.inlineQueryId,
this.button,
required this.results,
required this.nextOffset,
this.extra,
this.clientId,
});