CallbackQueryAnswer constructor

const CallbackQueryAnswer({
  1. required String text,
  2. required bool showAlert,
  3. required String url,
  4. dynamic extra,
  5. int? clientId,
})

Contains a bot's answer to a callback query

Implementation

const CallbackQueryAnswer({
  required this.text,
  required this.showAlert,
  required this.url,
  this.extra,
  this.clientId,
});