PollAnswer constructor

PollAnswer({
  1. required String pollId,
  2. Chat? voterChat,
  3. User? user,
  4. required List<int> optionIds,
})

Implementation

PollAnswer({
  required this.pollId,
  this.voterChat,
  this.user,
  required this.optionIds,
});