SentenceAnswer constructor

const SentenceAnswer({
  1. Key? key,
  2. required void onChange(
    1. List<Map<String, String>> answers
    ),
  3. required Question question,
  4. required bool isNumeric,
})

Implementation

const SentenceAnswer({
  super.key,
  required this.onChange,
  required this.question,
  required this.isNumeric,
});