OnQuitFromGroupCallback
Introduction
The callback of leaving the group voluntarily event, do not works on AVChatRoom. IT will trigger for all the login devices.
Returned template
OnQuitFromGroupCallback = void Function(
String groupID
)
Return value details
name | type | description |
---|---|---|
groupID | String | The group ID. |
Code example
V2TimGroupListener listener = V2TimGroupListener(
onQuitFromGroup: (String groupID) async {
}
);
TencentImSDKPlugin.v2TIMManager.addGroupListener(listener: listener);