AKIDateTimePicker constructor

const AKIDateTimePicker({
  1. DateTime? selDate,
  2. Function? onChange,
  3. double? height = 120,
  4. double? width,
  5. Color? borderColor = Colors.purple,
  6. Color? colorMask,
  7. int? startYear = 1900,
  8. int? endYear = 2050,
  9. String? lblYear = "Y",
  10. String? lblMonth = "M",
  11. String? lblDay = "D",
  12. String? lblHour = "H",
  13. String? lblMin = "m",
  14. Color? textColor = Colors.black,
  15. Color? lblColor = Colors.grey,
  16. Key? key,
})

Implementation

const AKIDateTimePicker(
    {this.selDate,
    this.onChange,
    this.height = 120,
    this.width,
    this.borderColor = Colors.purple,
    this.colorMask,
    this.startYear = 1900,
    this.endYear = 2050,
    this.lblYear = "Y",
    this.lblMonth = "M",
    this.lblDay = "D",
    this.lblHour = "H",
    this.lblMin = "m",
    this.textColor = Colors.black,
    this.lblColor = Colors.grey,
    super.key});