DytePollOption constructor

DytePollOption({
  1. required String text,
  2. required List<DytePollVote> votes,
  3. required int count,
})

Implementation

DytePollOption({
  required this.text,
  required this.votes,
  required this.count,
});