Notification constructor
Notification({
- required int id,
- required int date,
- required bool isSilent,
- NotificationType? type,
Implementation
Notification({
required this.id,
required this.date,
required this.isSilent,
this.type,
});