sendMergerMessage method
Future<V2TimValueCallback<V2TimMessage> ?>
sendMergerMessage({
- required List<
V2TimConversation> conversationList, - required String title,
- required List<
String> abstractList, - 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);
}