GNDateTimeRangeSelect constructor

GNDateTimeRangeSelect({
  1. Key? key,
  2. required void onDateSelected(
    1. DateTime? startDateTime,
    2. DateTime? endDateTime
    ),
  3. bool? isRequired = false,
  4. DateTime? startDateTime,
  5. DateTime? endDateTime,
  6. Color? fromDateRowColor,
  7. Color? toDateRowColor,
  8. IconData? icon,
  9. Color? iconColor,
  10. double? iconSize,
  11. Color? borderColor,
  12. double? borderWidth,
  13. DateTime? startFirstDate,
  14. DateTime? endFirstDate,
  15. DateTime? startLastDate,
  16. DateTime? endLastDate,
})

Implementation

GNDateTimeRangeSelect(
    {super.key,
    required this.onDateSelected,
    this.isRequired = false,
    this.startDateTime,
    this.endDateTime,
    this.fromDateRowColor,
    this.toDateRowColor,
    this.icon,
    this.iconColor,
    this.iconSize,
    this.borderColor,
    this.borderWidth,
    this.startFirstDate,
    this.endFirstDate,
    this.startLastDate,
    this.endLastDate});