updateChatReplyMarkup property

UpdateChatReplyMarkup? updateChatReplyMarkup

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

UpdateChatReplyMarkup? get updateChatReplyMarkup {
  if (this is UpdateChatReplyMarkup) {
    return this as UpdateChatReplyMarkup;
  }
  return null;
}