sendMergerMessage method

Future<V2TimValueCallback<V2TimMessage>?> sendMergerMessage({
  1. required List<V2TimConversation> conversationList,
  2. required String title,
  3. required List<String> abstractList,
  4. required BuildContext context,
})

Send merger message; This method needs use with TIMUIKitChat directly or model been initialized.

Implementation

Future<V2TimValueCallback<V2TimMessage>?> sendMergerMessage({
  required List<V2TimConversation> conversationList,
  required String title,
  required List<String> abstractList,
  required BuildContext context,
}) async {
  return model?.sendMergerMessage(
      conversationList: conversationList,
      title: title,
      abstractList: abstractList,
      context: context);
}