LinearDatePicker constructor

LinearDatePicker({
  1. String startDate = "",
  2. String endDate = "",
  3. String initialDate = "",
  4. required dynamic dateChangeListener(
    1. String date
    ),
  5. bool showDay = true,
  6. TextStyle? labelStyle,
  7. TextStyle? selectedRowStyle,
  8. TextStyle? unselectedRowStyle,
  9. String yearText = "سال",
  10. String monthText = "ماه",
  11. String dayText = "روز",
  12. bool showLabels = true,
  13. double columnWidth = 55.0,
  14. bool isJalaali = false,
  15. bool showMonthName = false,
  16. bool addLeadingZero = false,
})

Implementation

LinearDatePicker({
  this.startDate = "",
  this.endDate = "",
  this.initialDate = "",
  required this.dateChangeListener,
  this.showDay = true,
  this.labelStyle,
  this.selectedRowStyle,
  this.unselectedRowStyle,
  this.yearText = "سال",
  this.monthText = "ماه",
  this.dayText = "روز",
  this.showLabels = true,
  this.columnWidth = 55.0,
  this.isJalaali = false,
  this.showMonthName = false,
  this.addLeadingZero = false,
});