InlineQueryResults constructor

const InlineQueryResults({
  1. required int inlineQueryId,
  2. InlineQueryResultsButton? button,
  3. required List<InlineQueryResult> results,
  4. required String nextOffset,
  5. dynamic extra,
  6. 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,
});