FoOptionModel constructor

const FoOptionModel({
  1. required Object value,
  2. required String label,
  3. FoQuizModel? child,
  4. bool selected = false,
  5. int score = 0,
})

Implementation

const FoOptionModel({
  required this.value,
  required this.label,
  this.child,
  this.selected = false,
  this.score = 0,
});