PollResults constructor

const PollResults({
  1. required bool min,
  2. List<PollAnswerVotersBase>? results,
  3. int? totalVoters,
  4. List<PeerBase>? recentVoters,
  5. String? solution,
  6. List<MessageEntityBase>? solutionEntities,
})

Poll Results constructor.

Implementation

const PollResults({
  required this.min,
  this.results,
  this.totalVoters,
  this.recentVoters,
  this.solution,
  this.solutionEntities,
}) : super._();