ZetaSlider constructor

const ZetaSlider({
  1. Key? key,
  2. bool? rounded,
  3. required double value,
  4. ValueChanged<double>? onChange,
  5. int? divisions,
  6. String? semanticLabel,
  7. double min = 0.0,
  8. double max = 1.0,
})

Default constructor for ZetaSlider

Implementation

const ZetaSlider({
  super.key,
  super.rounded,
  required this.value,
  this.onChange,
  this.divisions,
  this.semanticLabel,
  this.min = 0.0,
  this.max = 1.0,
});