FlutterSliderHatchMarkLabel constructor

FlutterSliderHatchMarkLabel({
  1. double? percent,
  2. Widget? label,
})

Implementation

FlutterSliderHatchMarkLabel({
  this.percent,
  this.label,
}) : assert((label == null && percent == null) ||
          (label != null && percent != null && percent >= 0));