updatePoll property

UpdatePoll? updatePoll

A poll was updated; for bots only

Implementation

UpdatePoll? get updatePoll {
  if (this is UpdatePoll) {
    return this as UpdatePoll;
  }
  return null;
}