Event constructor
Implementation
Event({
this.year,
@required this.month,
@required this.day,
this.label = EventLabel.birthday,
this.customLabel = '',
}) : assert(month != null),
assert(day != null);
Event({
this.year,
@required this.month,
@required this.day,
this.label = EventLabel.birthday,
this.customLabel = '',
}) : assert(month != null),
assert(day != null);