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. bool showValue = true,
})

Implementation

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