PollOption constructor

PollOption({
  1. String id = '',
  2. String text = '',
  3. List<String> voterIds = const [],
})

Implementation

PollOption({
  this.id = '',
  this.text = '',
  this.voterIds = const [],
});