PollVoterListQueryParams constructor

PollVoterListQueryParams({
  1. required int pollId,
  2. required int pollOptionId,
  3. required ChannelType channelType,
  4. required String channelUrl,
  5. int limit = 20,
})

Implementation

PollVoterListQueryParams({
  required this.pollId,
  required this.pollOptionId,
  required this.channelType,
  required this.channelUrl,
  this.limit = 20, // Default
});