UpdateNewCallbackQuery constructor

const UpdateNewCallbackQuery(
  1. {required int id,
  2. required int senderUserId,
  3. required int chatId,
  4. required int messageId,
  5. required int chatInstance,
  6. required CallbackQueryPayload payload,
  7. dynamic extra,
  8. int? clientId}
)

A new incoming callback query; for bots only

Implementation

const UpdateNewCallbackQuery({
  required this.id,
  required this.senderUserId,
  required this.chatId,
  required this.messageId,
  required this.chatInstance,
  required this.payload,
  this.extra,
  this.clientId,
});