OnFriendListDeletedCallback
Introduction
The callback of user been removed from the contact list event.
Returned template
OnFriendListDeletedCallback = void Function(
List<String> userList
)
Return value details
name | type | description |
---|---|---|
userList | List< String > | The list of removed users. |
Code example
V2TimFriendshipListener listener = V2TimFriendshipListener(
onFriendListDeleted: (List<String> userList) async {
}
);
TencentImSDKPlugin.v2TIMManager
.getFriendshipManager()
.addFriendListener(listener: listener);