CallbackQuery constructor

CallbackQuery({
  1. required String id,
  2. required User from,
  3. Message? message,
  4. String? inlineMessageId,
  5. String? chatInstance,
  6. String? data,
  7. String? gameShortName,
})

Implementation

CallbackQuery({
  required this.id,
  required this.from,
  this.message,
  this.inlineMessageId,
  this.chatInstance,
  this.data,
  this.gameShortName,
});