OptionsCardWrong constructor

const OptionsCardWrong({
  1. Key? key,
  2. required String selectedResponse,
  3. required String? correctResponse,
  4. required String? question,
  5. double minHeight = 250.0,
  6. double minHeightOptionsCard = 60.0,
})

Implementation

const OptionsCardWrong({
  super.key,
  required this.selectedResponse,
  required this.correctResponse,
  required this.question,
  this.minHeight = 250.0,
  this.minHeightOptionsCard = 60.0,
});