LinearDatePicker constructor

LinearDatePicker({
  1. DateTime? startDate,
  2. DateTime? endDate,
  3. DateTime? initialDate,
  4. required dynamic dateChangeListener(
    1. DateTime date
    ),
  5. bool showDay = true,
  6. TextStyle? labelStyle,
  7. TextStyle? selectedRowStyle,
  8. TextStyle? unselectedRowStyle,
  9. String yearLabel = "سال",
  10. String monthLabel = "ماه",
  11. String dayLabel = "روز",
  12. bool showLabels = true,
  13. double columnWidth = 55.0,
  14. bool isJalali = false,
  15. Duration? debounceDuration,
  16. bool showMonthName = false,
  17. List<String>? monthsNames,
})

Implementation

LinearDatePicker({
  this.startDate,
  this.endDate,
  this.initialDate,
  required this.dateChangeListener,
  this.showDay = true,
  this.labelStyle,
  this.selectedRowStyle,
  this.unselectedRowStyle,
  this.yearLabel = "سال",
  this.monthLabel = "ماه",
  this.dayLabel = "روز",
  this.showLabels = true,
  this.columnWidth = 55.0,
  this.isJalali = false,
  this.debounceDuration,
  this.showMonthName = false,
  this.monthsNames,
});