Notification constructor

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

A notification that can be included in Message.

Implementation

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