UpdatePoll constructor

const UpdatePoll({
  1. required Poll poll,
  2. dynamic extra,
  3. int? clientId,
})

UpdatePoll (updatePoll) - child of Update

A poll was updated; for bots only.

  • poll: New data about the poll.

Implementation

const UpdatePoll({
  required this.poll,
  this.extra,
  this.clientId,
});