RangeControl constructor

const RangeControl({
  1. Key? key,
  2. Icon? prefixIcon,
  3. required JsonPath basePath,
  4. required FormValueChanged<IRange> onChange,
  5. required IRange? initialValue,
  6. Consumer<ValidationError>? onError,
  7. double? width,
})

Implementation

const RangeControl({
  Key? key,
  this.prefixIcon,
  required this.basePath,
  required this.onChange,
  required this.initialValue,
  this.onError,
  this.width,
}) : super(key: key);