ContinuousParameterRange constructor

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

Implementation

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