ContactEvent constructor
const
ContactEvent({
- required int month,
- required int day,
- int? year,
- EventLabel label = EventLabel.other,
- String customLabel = '',
Creates a new ContactEvent with required month and day
Implementation
const ContactEvent({
required this.month,
required this.day,
this.year,
this.label = EventLabel.other,
this.customLabel = '',
});