RangeDate constructor

RangeDate({
  1. required DateTime start,
  2. required DateTime end,
  3. Color? color,
  4. Color? textColor,
  5. Widget? icon,
  6. String toolTipEnMessage = '',
  7. String toolTipArMessage = '',
})

Implementation

RangeDate({
  required this.start,
  required this.end,
  this.color,
  this.textColor,
  this.icon,
  this.toolTipEnMessage = '',
  this.toolTipArMessage = '',
});