UpdatePollAnswer constructor
const
UpdatePollAnswer({
- required int pollId,
- required MessageSender voterId,
- required List<
int> optionIds, - dynamic extra,
- 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,
});