Notification constructor

Notification({
  1. String? title,
  2. String? body,
  3. String? channelId,
  4. String? imageUrl,
  5. String? color,
  6. String? icon,
  7. String? clickAction,
})

Implementation

Notification({
  this.title,
  this.body,
  this.channelId,
  this.imageUrl,
  this.color,
  this.icon,
  this.clickAction,
});