inputMessagePoll property
A message with a poll. Polls can't be sent to secret chats. Polls can be sent only to a private chat with a bot
Implementation
InputMessagePoll? get inputMessagePoll {
if (this is InputMessagePoll) {
return this as InputMessagePoll;
}
return null;
}