JuiRangeItem constructor

const JuiRangeItem({
  1. Key? key,
  2. required String title,
  3. String? minValue,
  4. String? maxValue,
  5. String minHintText = '',
  6. String maxHintText = '',
  7. Widget? separator,
  8. JuiItemConfig config = const JuiItemConfig(),
})

Implementation

const JuiRangeItem({
  Key? key,
  required this.title,
  this.minValue,
  this.maxValue,
  this.minHintText = '',
  this.maxHintText = '',
  this.separator,
  this.config = const JuiItemConfig(),
}) : super(key: key);