GetCallbackQueryMessage constructor

const GetCallbackQueryMessage({
  1. required int chatId,
  2. required int messageId,
  3. required int callbackQueryId,
})

Returns information about a message with the callback button that originated a callback query; for bots only

Implementation

const GetCallbackQueryMessage({
  required this.chatId,
  required this.messageId,
  required this.callbackQueryId,
});