DeleteChatReplyMarkup constructor

const DeleteChatReplyMarkup({
  1. required int chatId,
  2. required int messageId,
})

Deletes the default reply markup from a chat. Must be called after a one-time keyboard or a replyMarkupForceReply reply markup has been used. An updateChatReplyMarkup update will be sent if the reply markup is changed

Implementation

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