InquiryOption constructor

InquiryOption({
  1. required int id,
  2. required Widget title,
  3. required int votes,
  4. bool rightAnswer = false,
})

Implementation

InquiryOption({
  required this.id,
  required this.title,
  required this.votes,
  this.rightAnswer = false,
});