AnswerChoiceWidget constructor

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

Implementation

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