MultipleChoiceRow constructor

MultipleChoiceRow({
  1. Key? key,
  2. required Function func,
  3. required Map answer,
  4. required Map question,
  5. required Map theme,
})

Implementation

MultipleChoiceRow({
  Key? key,
  required this.func,
  required this.answer,
  required this.question,
  required this.theme,
}) : super(key: key);