Inbox constructor

Inbox({
  1. String id = "",
  2. bool isPrivate = true,
  3. List<String> profileIds = const [],
  4. InboxMessage? lastMessage,
  5. int createdTime = 0,
})

Implementation

Inbox({
  this.id = "",
  this.isPrivate = true,
  this.profileIds = const [],
  this.lastMessage,
  this.createdTime = 0});