Event constructor
Event({
- int? year,
- required int month,
- required int day,
- EventLabel label = EventLabel.birthday,
- String customLabel = '',
Implementation
Event({
this.year,
required this.month,
required this.day,
this.label = EventLabel.birthday,
this.customLabel = '',
});