InboxNotification constructor

InboxNotification(
  1. {required DateTime date,
  2. required String title,
  3. String? subtitle,
  4. String? path,
  5. String? id}
)

Implementation

InboxNotification({
  required this.date,
  required this.title,
  this.subtitle,
  this.path,
  this.id,
});