ScaleAnswerFormat constructor

const ScaleAnswerFormat({
  1. required double maximumValue,
  2. required double minimumValue,
  3. required double defaultValue,
  4. required double step,
  5. String maximumValueDescription = '',
  6. String minimumValueDescription = '',
  7. String? question,
  8. String? answerType = type,
})

Implementation

const ScaleAnswerFormat({
  required this.maximumValue,
  required this.minimumValue,
  required this.defaultValue,
  required this.step,
  this.maximumValueDescription = '',
  this.minimumValueDescription = '',
  super.question,
  super.answerType = type,
}) : super();