IRTimePicker constructor

const IRTimePicker({
  1. Key? key,
  2. IRTimeModel? initialTime,
  3. bool visibleSecondsPicker = true,
  4. bool visibleNowButton = true,
  5. required String nowButtonText,
  6. BoxConstraints? constraints,
  7. required IRTimePickerOnSelected onSelected,
  8. TextStyle? textStyle,
  9. double diameterRatio = 1.0,
  10. double magnification = 1.5,
  11. double offAxisFraction = 0.0,
  12. double squeeze = 1.3,
})

Implementation

const IRTimePicker({
  super.key,
  this.initialTime,
  this.visibleSecondsPicker = true,
  this.visibleNowButton = true,
  required this.nowButtonText,
  this.constraints,
  required this.onSelected,
  this.textStyle,
  this.diameterRatio = 1.0,
  this.magnification = 1.5,
  this.offAxisFraction = 0.0,
  this.squeeze = 1.3,
});