SilBottomDatePickerWidget constructor

const SilBottomDatePickerWidget(
  1. String title, {
  2. DateTime? initialDateTime,
  3. void tapCancelFunc()?,
  4. void tapSureSeletedFunc(
    1. DateTime selectedTime
    )?,
  5. double? height,
  6. CupertinoDatePickerMode? mode,
  7. DateTime? minimumDate,
  8. DateTime? maximumDate,
  9. int minimumYear = 1,
  10. int? maximumYear,
  11. bool use24hFormat = false,
  12. DatePickerDateOrder? dateOrder,
  13. Key? key,
  14. Color? themeColor,
})

Implementation

const SilBottomDatePickerWidget(this.title,
    {this.initialDateTime,
    this.tapCancelFunc,
    this.tapSureSeletedFunc,
    this.height,
    this.mode,
    this.minimumDate,
    this.maximumDate,
    this.minimumYear = 1,
    this.maximumYear,
    this.use24hFormat = false,
    this.dateOrder,
    Key? key,
    Color? themeColor})
    : super(key: key, themeColor: themeColor);