Option constructor

Option({
  1. required String id,
  2. required String text,
  3. List<Question>? nested,
})

Implementation

Option({
  required this.id,
  required this.text,
  this.nested,
});