FastQuestion constructor

const FastQuestion({
  1. required String text,
  2. required List<String> options,
  3. required int correctIndex,
})

Implementation

const FastQuestion({
  required this.text,
  required this.options,
  required this.correctIndex,
});