RPSliderAnswerFormat constructor

RPSliderAnswerFormat({
  1. required double minValue,
  2. required double maxValue,
  3. required int divisions,
  4. String? prefix = '',
  5. String? suffix = '',
})

Implementation

RPSliderAnswerFormat({
  required this.minValue,
  required this.maxValue,
  required this.divisions,
  this.prefix = '',
  this.suffix = '',
}) : super();