IntegerParameterRange constructor

IntegerParameterRange({
  1. required int maxValue,
  2. required int minValue,
  3. required String name,
  4. ScalingType? scalingType,
})

Implementation

IntegerParameterRange({
  required this.maxValue,
  required this.minValue,
  required this.name,
  this.scalingType,
});