MultipleChoiceAnswer constructor

const MultipleChoiceAnswer({
  1. Key? key,
  2. required void onChange(
    1. List<String> answers
    ),
  3. required Question question,
})

Implementation

const MultipleChoiceAnswer(
    {Key? key, required this.onChange, required this.question})
    : super(key: key);