Event constructor

Event(
  1. DateTime date,
  2. {EventLabel label: EventLabel.birthday,
  3. String customLabel: "",
  4. bool noYear: false}
)

Implementation

Event(this.date,
    {this.label = EventLabel.birthday,
    this.customLabel = "",
    this.noYear = false});