AnswerInlineQuery constructor

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

Implementation

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