addMention method

Future<void> addMention([
  1. String mentionType = hasMentionValue
])

Implementation

Future<void> addMention([String mentionType = hasMentionValue]) async {
  Map<String, String> conversationExt = ext ?? {};
  conversationExt[hasMentionKey] = mentionType;
  await setExt(conversationExt);
}