PickerWidget constructor

PickerWidget(
  1. List<Tab> _tabs,
  2. DateTime _initStart,
  3. DateTime _initEnd,
  4. int _interval,
  5. VoidCallback? _onCancel,
  6. PickerConfirmCallback? _onConfirm,
  7. CupertinoDatePickerMode _mode,
  8. String _doneText,
  9. String _cancelText,
  10. DateTime _minimumTime,
  11. DateTime _maximumTime,
  12. bool _use24hFormat, {
  13. Key? key,
})

Implementation

PickerWidget(
    this._tabs,
    this._initStart,
    this._initEnd,
    this._interval,
    this._onCancel,
    this._onConfirm,
    this._mode,
    this._doneText,
    this._cancelText,
    this._minimumTime,
    this._maximumTime,
    this._use24hFormat,
    {Key? key})
    : super(key: key);