OnFriendApplicationListDeletedCallback
Introduction
The callback of the amount decreased of the friend application list event.
Returned template
OnFriendApplicationListDeletedCallback = void Function(
List<String> userIDList
)
Return value details
name | type | description |
---|---|---|
userIDList | List< String > | User ID list of reduced friend requests |
Code example
V2TimFriendshipListener listener = V2TimFriendshipListener(
onFriendApplicationListDeleted: (List<String> userIDList) async {
}
);
TencentImSDKPlugin.v2TIMManager
.getFriendshipManager()
.addFriendListener(listener: listener);