keyboardButtonTypeRequestPoll property

KeyboardButtonTypeRequestPoll? keyboardButtonTypeRequestPoll

A button that allows the user to create and send a poll when pressed; available only in private chats

Implementation

KeyboardButtonTypeRequestPoll? get keyboardButtonTypeRequestPoll {
  if (this is KeyboardButtonTypeRequestPoll) {
    return this as KeyboardButtonTypeRequestPoll;
  }
  return null;
}