UpdateChatReplyMarkup constructor

const UpdateChatReplyMarkup({
  1. required int chatId,
  2. required int replyMarkupMessageId,
  3. dynamic extra,
  4. int? clientId,
})

The default chat reply markup was changed. Can occur because new messages with reply markup were received or because an old reply markup was hidden by the user

Implementation

const UpdateChatReplyMarkup({
  required this.chatId,
  required this.replyMarkupMessageId,
  this.extra,
  this.clientId,
});