updatePollAnswer property

UpdatePollAnswer? updatePollAnswer

A user changed the answer to a poll; for bots only

Implementation

UpdatePollAnswer? get updatePollAnswer {
  if (this is UpdatePollAnswer) {
    return this as UpdatePollAnswer;
  }
  return null;
}