Notification constructor

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

Implementation

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