NotificationMessagePayload constructor

NotificationMessagePayload({
  1. String? tag,
  2. String? body,
  3. String? icon,
  4. String? badge,
  5. String? color,
  6. String? sound,
  7. String? title,
  8. String? bodyLocKey,
  9. String? bodyLocArgs,
  10. String? clickAction,
  11. String? titleLocKey,
  12. String? titleLocArgs,
})

Implementation

NotificationMessagePayload({
  this.tag,
  this.body,
  this.icon,
  this.badge,
  this.color,
  this.sound,
  this.title,
  this.bodyLocKey,
  this.bodyLocArgs,
  this.clickAction,
  this.titleLocKey,
  this.titleLocArgs,
});