UpdatePollAnswer constructor

const UpdatePollAnswer({
  1. required int pollId,
  2. required MessageSender voterId,
  3. required List<int> optionIds,
  4. dynamic extra,
  5. int? clientId,
})

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

Implementation

const UpdatePollAnswer({
  required this.pollId,
  required this.voterId,
  required this.optionIds,
  this.extra,
  this.clientId,
});