BeautifulTimePicker constructor

const BeautifulTimePicker({
  1. Key? key,
  2. Color accentColor = Colors.blue,
  3. Color backgroundColor = Colors.black,
  4. Color textColor = Colors.white,
  5. Color selectedBackgroundColor = Colors.grey,
  6. ValueChanged<DateTime>? onTimeChanged,
})

Implementation

const BeautifulTimePicker({
  Key? key,
  this.accentColor = Colors.blue,
  this.backgroundColor = Colors.black,
  this.textColor = Colors.white,
  this.selectedBackgroundColor = Colors.grey,
  this.onTimeChanged,
}) : super(key: key);