MultipleDoubleAnswerFormat constructor

const MultipleDoubleAnswerFormat({
  1. List<MultiDouble>? defaultValues,
  2. required List<String> hints,
  3. String? question,
  4. String? answerType = type,
})

Implementation

const MultipleDoubleAnswerFormat({
  this.defaultValues,
  required this.hints,
  super.question,
  super.answerType = type,
}) : super();