InboxMessage constructor

InboxMessage({
  1. required String id,
  2. String? title,
  3. String? alert,
  4. String? custom,
  5. Map<String, String>? customKeys,
  6. required bool deleted,
  7. DateTime? endDateUtc,
  8. required bool read,
  9. DateTime? sendDateUtc,
  10. String? sound,
  11. DateTime? startDateUtc,
  12. String? subject,
  13. String? url,
  14. Media? media,
  15. String? subtitle,
  16. String? inboxMessage,
  17. String? inboxSubtitle,
  18. NotificationMessage? notificationMessage,
  19. int? messageType,
})

Implementation

InboxMessage(
    {required this.id,
    this.title,
    this.alert,
    this.custom,
    this.customKeys,
    required this.deleted,
    this.endDateUtc,
    required this.read,
    this.sendDateUtc,
    this.sound,
    this.startDateUtc,
    this.subject,
    this.url,
    this.media,
    this.subtitle,
    this.inboxMessage,
    this.inboxSubtitle,
    this.notificationMessage,
    this.messageType});