removeUnreadSeparator method

void removeUnreadSeparator()

Implementation

void removeUnreadSeparator() async {
  if (!profile.isGroupProfile.checkNull()) {
    chatList.removeWhere(
        (chatItem) => chatItem.messageType == Constants.mNotification);
  }
}