TimePickerSpinner constructor
TimePickerSpinner({
- Key? key,
- DateTime? time,
- int minutesInterval = 1,
- int secondsInterval = 1,
- bool is24HourMode = true,
- bool isShowSeconds = false,
- TextStyle? highlightedTextStyle,
- TextStyle? normalTextStyle,
- double? itemHeight,
- double? itemWidth,
- AlignmentGeometry? alignment,
- double? spacing,
- bool isForce2Digits = false,
- TimePickerCallback? onTimeChange,
Implementation
TimePickerSpinner(
{Key? key,
this.time,
this.minutesInterval = 1,
this.secondsInterval = 1,
this.is24HourMode = true,
this.isShowSeconds = false,
this.highlightedTextStyle,
this.normalTextStyle,
this.itemHeight,
this.itemWidth,
this.alignment,
this.spacing,
this.isForce2Digits = false,
this.onTimeChange})
: super(key: key);