MessageNotification constructor

const MessageNotification({
  1. required String title,
  2. required String body,
  3. required MessageNotificationTrigger trigger,
  4. String? action,
  5. List<MessageNotificationAttachment>? attachments,
  6. List<String>? bodyLocArgs,
  7. String? bodyLocKey,
  8. String? category,
  9. bool? contentAvailable,
  10. String? group,
  11. String? icon,
  12. int? notificationCount,
  13. String? notificationTimestamp,
  14. String? sound,
  15. String? subtitle,
  16. String? tag,
  17. String? threadIdentifier,
  18. List<String>? titleLocArgs,
  19. String? titleLocKey,
})

Implementation

const MessageNotification({
  required this.title,
  required this.body,
  required this.trigger,
  this.action,
  this.attachments,
  this.bodyLocArgs,
  this.bodyLocKey,
  this.category,
  this.contentAvailable,
  this.group,
  this.icon,
  this.notificationCount,
  this.notificationTimestamp,
  this.sound,
  this.subtitle,
  this.tag,
  this.threadIdentifier,
  this.titleLocArgs,
  this.titleLocKey,
});