PlutoGridDatePicker constructor

PlutoGridDatePicker({
  1. required BuildContext context,
  2. required DateFormat dateFormat,
  3. required DateFormat headerDateFormat,
  4. DateTime? initDate,
  5. DateTime? startDate,
  6. DateTime? endDate,
  7. PlutoOnLoadedEventCallback? onLoaded,
  8. PlutoOnSelectedEventCallback? onSelected,
  9. double itemHeight = PlutoGridSettings.rowTotalHeight,
  10. PlutoGridConfiguration configuration = const PlutoGridConfiguration(),
})

Implementation

PlutoGridDatePicker({
  required this.context,
  required this.dateFormat,
  required this.headerDateFormat,
  this.initDate,
  this.startDate,
  this.endDate,
  this.onLoaded,
  this.onSelected,
  this.itemHeight = PlutoGridSettings.rowTotalHeight,
  this.configuration = const PlutoGridConfiguration(),
}) {
  open();
}