InboxMessage constructor

InboxMessage({
  1. required String messageId,
  2. String? title,
  3. String? body,
  4. String? preview,
  5. String? created,
  6. List<InboxAction>? actions,
  7. dynamic data,
  8. String? archived,
  9. String? read,
  10. String? opened,
})

Implementation

InboxMessage({
  required this.messageId,
  this.title,
  this.body,
  this.preview,
  this.created,
  this.actions,
  this.data,
  this.archived,
  this.read,
  this.opened,
});