addConversationMute method

void addConversationMute(
  1. Map<String, int> map
)

Implementation

void addConversationMute(Map<String, int> map) {
  dynamic tmpMap = cachedMap[muteMapKey] ?? {};
  tmpMap.addAll(map);
  cachedMap[muteMapKey] = tmpMap;
  _updateStore();
}