Date constructor

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

Implementation

Date({
  required this.date,
  this.color,
  this.textColor,
  this.icon,
  this.toolTipEnMessage = '',
  this.toolTipArMessage = '',
});