PollOptions constructor

PollOptions({
  1. required String label,
  2. required int pollsCount,
  3. required dynamic id,
  4. bool isSelected = false,
})

Implementation

PollOptions({
  required this.label,
  required this.pollsCount,
  required this.id,
  this.isSelected = false,
});