RangeControl constructor
const
RangeControl({
- Key? key,
- Icon? prefixIcon,
- required JsonPath basePath,
- required FormValueChanged<
IRange> onChange, - required IRange? initialValue,
- Consumer<
ValidationError> ? onError, - 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);