OnConversationsDeletedFromGroup
Introduction
The callback of some conversations been removed from the group event.
Returned template
OnConversationsDeletedFromGroup = void Function(
String groupName, List<V2TimConversation> conversationList);
)
Return value details
name | type | description |
---|---|---|
groupName | String | The name of the group. |
conversationList | List< V2TimConversation > | The list of conversations that were removed. |
Code example
V2TimConversationListener listener = V2TimConversationListener(
onConversationsDeletedFromGroup:
(String groupName, List<V2TimConversation> conversationList) => {
});
TencentImSDKPlugin.v2TIMManager
.getConversationManager()
.addConversationListener(listener: listener);