replyMarkupRemoveKeyboard property
Instructs application to remove the keyboard once this message has been received. This kind of keyboard can't be received in an incoming message; instead, updateChatReplyMarkup with message_id == 0 will be sent
Implementation
ReplyMarkupRemoveKeyboard? get replyMarkupRemoveKeyboard {
if (this is ReplyMarkupRemoveKeyboard) {
return this as ReplyMarkupRemoveKeyboard;
}
return null;
}