InputSliderForm constructor

const InputSliderForm({
  1. Key? key,
  2. required List<InputSlider> children,
  3. int? leadingWeight,
  4. int? sliderWeight,
  5. InputDecoration? inputDecoration,
  6. BorderRadius? borderRadius,
  7. Color? focusBorderColor,
  8. Color? borderColor,
  9. bool? filled,
  10. Color? fillColor,
  11. TextStyle? textFieldStyle,
  12. Color? inactiveSliderColor,
  13. Color? activeSliderColor,
  14. bool vertical = false,
})

Implementation

const InputSliderForm(
    {Key? key,
    required this.children,
    this.leadingWeight,
    this.sliderWeight,
    this.inputDecoration,
    this.borderRadius,
    this.focusBorderColor,
    this.borderColor,
    this.filled,
    this.fillColor,
    this.textFieldStyle,
    this.inactiveSliderColor,
    this.activeSliderColor,
    this.vertical = false})
    : super(key: key);