WheelTimerPicker constructor

const WheelTimerPicker({
  1. Key? key,
  2. int initialHour = 1,
  3. int initialMinute = 0,
  4. String initialPeriod = 'AM',
  5. double itemHeight = 50.0,
  6. TextStyle? selectedTextStyle,
  7. TextStyle? unselectedTextStyle,
  8. Color dividerColor = Colors.grey,
  9. void onTimeChanged(
    1. TimeOfDay
    )?,
  10. double? leftPadding,
  11. double? rightPadding,
})

Implementation

const WheelTimerPicker({
  super.key,
  this.initialHour = 1,
  this.initialMinute = 0,
  this.initialPeriod = 'AM',
  this.itemHeight = 50.0,
  this.selectedTextStyle,
  this.unselectedTextStyle,
  this.dividerColor = Colors.grey,
  this.onTimeChanged,
  this.leftPadding,
  this.rightPadding,
});