FormBuilderRangeSlider constructor

FormBuilderRangeSlider({Key key, @required String attribute, @required num min, @required num max, @required RangeValues initialValue, List<FormFieldValidator> validators: const [], bool readOnly: false, InputDecoration decoration: const InputDecoration(), int divisions, ValueChanged onChanged ValueTransformer valueTransformer, Color activeColor, Color inactiveColor, ValueChanged<RangeValues> onChangeStart, ValueChanged<RangeValues> onChangeEnd, RangeLabels labels, RangeSemanticFormatterCallback semanticFormatterCallback, FormFieldSetter onSaved })

Implementation

FormBuilderRangeSlider({
  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.labels,
  this.semanticFormatterCallback,
  this.onSaved,
}) : super(key: key);