Event constructor

Event({
  1. DateTime? dateTime,
  2. String? name,
  3. Color? color,
})

Implementation

Event({
  this.dateTime,
  this.name,
  this.color,
});