Event constructor

Event({
  1. int? id,
  2. required DateTime date,
  3. String? title,
  4. Widget? icon,
  5. Widget? dot,
})

Implementation

Event({
  this.id,
  required this.date,
  this.title,
  this.icon,
  this.dot,
});