PollVoterListQuery constructor

PollVoterListQuery(
  1. PollVoterListQueryParams params, {
  2. Chat? chat,
})

Implementation

PollVoterListQuery(
  this.params, {
  Chat? chat,
}) : super(chat: chat ?? SendbirdChat().chat) {
  if (params.limit != null) limit = (params.limit)!;
}