FormBuilderSlider constructor
FormBuilderSlider({Key key, @required String attribute, @required double min, @required double max, @required double initialValue, List<FormFieldValidator> validators: const [], bool readOnly: false, InputDecoration decoration: const InputDecoration(), int divisions, ValueChanged onChanged ValueTransformer valueTransformer, Color activeColor, Color inactiveColor, ValueChanged<double> onChangeStart, ValueChanged<double> onChangeEnd, String label, SemanticFormatterCallback semanticFormatterCallback, NumberFormat numberFormat, FormFieldSetter onSaved })
Implementation
FormBuilderSlider({
Key key,
@required this.attribute,
@required this.min,
@required this.max,
@required this.initialValue,
this.validators = const [],
this.readOnly = false,
this.decoration = const InputDecoration(),
this.divisions,
this.onChanged,
this.valueTransformer,
this.activeColor,
this.inactiveColor,
this.onChangeStart,
this.onChangeEnd,
this.label,
this.semanticFormatterCallback,
this.numberFormat,
this.onSaved,
}) : super(key: key);