TimeRangePickerView constructor

const TimeRangePickerView({
  1. Key? key,
  2. required TimeRangePickerTheme theme,
  3. VoidCallback? onCancel,
  4. TimeRangePickerCallback? onChange,
  5. TimeRangePickerCallback? onConfirm,
})

Implementation

const TimeRangePickerView({
  super.key,
  required this.theme,
  this.onCancel,
  this.onChange,
  this.onConfirm,
});