Notification constructor

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

Implementation

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