resetUnreadCount method
Implementation
@override
resetUnreadCount(BaseMessage message) {
  int matchingIndex = getMatchingIndexFromKey(message.conversationId!);
  if (matchingIndex != -1) {
    list[matchingIndex].unreadMessageCount = 0;
    update();
  }
}