keyboardButtonTypeRequestChat property
A button that requests a chat to be shared by the current user; available only in private chats. Use the method shareChatWithBot to complete the request
Implementation
KeyboardButtonTypeRequestChat? get keyboardButtonTypeRequestChat {
if (this is KeyboardButtonTypeRequestChat) {
return this as KeyboardButtonTypeRequestChat;
}
return null;
}