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. required String url,
  14. Media? media,
})

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,
  required this.url,
  this.media,
});