InputTimePicker constructor

const InputTimePicker({
  1. Key? key,
  2. required TimeOfDay initialTime,
  3. required ValueChanged<TimeOfDay> onTimeChanged,
  4. required Color accentColor,
  5. Color? selectedBackgroundColor,
  6. Color? unselectedBoxBackgroundColor,
  7. Color? backgroundColor,
  8. Color? inputBorderColor,
  9. Color? timeTextColor,
  10. Color? unselectedTextColor,
})

Implementation

const InputTimePicker({
  Key? key,
  required this.initialTime,
  required this.onTimeChanged,
  required this.accentColor,
  this.selectedBackgroundColor,
  this.unselectedBoxBackgroundColor,
  this.backgroundColor,
  this.inputBorderColor,
  this.timeTextColor,
  this.unselectedTextColor,
}) : super(key: key);