TimeFilter constructor

const TimeFilter({
  1. Key? key,
  2. required ValueChanged<TimeOfDay?> onChange,
  3. TimeOfDay? value,
  4. String? display,
  5. InputDecoration decoration = const _DefaultInputDecoration(Icon(Icons.calendar_month_rounded)),
})

Implementation

const TimeFilter({
  Key? key,
  required this.onChange,
  this.value,
  this.display,
  this.decoration =
      const _DefaultInputDecoration(Icon(Icons.calendar_month_rounded)),
}) : super(key: key);