AppInboxMessage constructor

const AppInboxMessage({
  1. required String id,
  2. required String type,
  3. bool? isRead,
  4. double? createTime,
  5. Map<String, dynamic>? content,
})

Implementation

const AppInboxMessage({
    required this.id,
    required this.type,
    this.isRead,
    this.createTime,
    this.content
});