AnswerCallbackQuery constructor

const AnswerCallbackQuery({
  1. required int callbackQueryId,
  2. required String text,
  3. required bool showAlert,
  4. required String url,
  5. required int cacheTime,
})

Sets the result of a callback query; for bots only

Implementation

const AnswerCallbackQuery({
  required this.callbackQueryId,
  required this.text,
  required this.showAlert,
  required this.url,
  required this.cacheTime,
});