withCustomRange method

ImageQualityCharacteristic withCustomRange(
  1. double min,
  2. double max
)

Implementation

ImageQualityCharacteristic withCustomRange(double min, double max) {
  _customRange = ImageQualityRange(min, max);
  return this;
}