DatePickerTimeLine constructor

const DatePickerTimeLine({
  1. Key? key,
  2. double height = 200,
  3. required DatePickerController controller,
  4. DatePickerConfig datePickerConfig = const DatePickerConfig(),
  5. DateChangeListener? onDateChange,
  6. String locale = "en_US",
})

Implementation

const DatePickerTimeLine({
  // required this.currentMonthDate,
  super.key,
  // this.width = context,
  this.height = 200,
  required this.controller,
  this.datePickerConfig = const DatePickerConfig(),
  // this.monthTextStyle = defaultMonthTextStyle,

  this.onDateChange,

  // this.animateToDate,
  this.locale = "en_US",
});