OnConversationGroupNameChanged
Introduction
The callback on the conversation group name changed event.
Returned template
OnConversationGroupNameChanged = void Function(
String oldName, String newName);
)
Return value details
| name | type | description |
|---|---|---|
| oldName | String | The original name of the conversation group. |
| newName | String | The latest name of the conversation group. |
Code example
V2TimConversationListener listener = V2TimConversationListener(
onConversationGroupNameChanged: (String oldName, String newName) => {
});
TencentImSDKPlugin.v2TIMManager
.getConversationManager()
.addConversationListener(listener: listener);