AppInboxMessage constructor

AppInboxMessage({
  1. required String id,
  2. required String title,
  3. required String createdDate,
  4. required bool isNewMessage,
  5. String? content,
  6. String? imageUrl,
  7. String? linkUrl,
  8. String? category,
  9. Map<String?, Object?>? customData,
})

Implementation

AppInboxMessage({
  required this.id,
  required this.title,
  required this.createdDate,
  required this.isNewMessage,
  this.content,
  this.imageUrl,
  this.linkUrl,
  this.category,
  this.customData,
});