AnswerInlineQuery constructor

const AnswerInlineQuery({
  1. required int inlineQueryId,
  2. required bool isPersonal,
  3. InlineQueryResultsButton? button,
  4. required List<InputInlineQueryResult> results,
  5. required int cacheTime,
  6. required String nextOffset,
})

Sets the result of an inline query; for bots only

Implementation

const AnswerInlineQuery({
  required this.inlineQueryId,
  required this.isPersonal,
  this.button,
  required this.results,
  required this.cacheTime,
  required this.nextOffset,
});