PollChangeLogsResponse constructor

PollChangeLogsResponse({
  1. List<Poll>? updatedPolls,
  2. List<double>? deletedPollIds,
  3. required bool hasMore,
  4. String? token,
})

Implementation

PollChangeLogsResponse({
  this.updatedPolls,
  this.deletedPollIds,
  required this.hasMore,
  this.token,
});