chatListArchive property

ChatListArchive? chatListArchive

A list of chats usually located at the top of the main chat list. Unmuted chats are automatically moved from the Archive to the Main chat list when a new message arrives

Implementation

ChatListArchive? get chatListArchive {
  if (this is ChatListArchive) {
    return this as ChatListArchive;
  }
  return null;
}