Notification constructor

Notification({
  1. required int id,
  2. required int date,
  3. required bool isSilent,
  4. NotificationType? type,
})

Implementation

Notification({
  required this.id,
  required this.date,
  required this.isSilent,
  this.type,
});