Notification constructor

Notification({
  1. required String title,
  2. required String body,
})

Implementation

Notification({
  required this.title,
  required this.body,
});