QUSlider constructor

const QUSlider({
  1. Key? key,
  2. required double value,
  3. required dynamic onChanged(
    1. double
    ),
  4. bool showInput = true,
  5. bool disabled = false,
  6. double max = 1.0,
  7. double min = 0.0,
})

Implementation

const QUSlider(
    {Key? key,
    required this.value,
    required this.onChanged,
    this.showInput = true,
    this.disabled = false,
    this.max = 1.0,
    this.min = 0.0})
    : super(key: key);