keyboardButtonTypeRequestUser property

KeyboardButtonTypeRequestUser? keyboardButtonTypeRequestUser

A button that requests a user to be shared by the current user; available only in private chats. Use the method shareUserWithBot to complete the request

Implementation

KeyboardButtonTypeRequestUser? get keyboardButtonTypeRequestUser {
  if (this is KeyboardButtonTypeRequestUser) {
    return this as KeyboardButtonTypeRequestUser;
  }
  return null;
}