OnApplicationProcessedCallback
Introduction
The group entry application has been approved by the group administrators or owner, only the applicant can received.
Returned template
OnApplicationProcessedCallback = void Function(
String groupID,
V2TimGroupMemberInfo opUser,
bool isAgreeJoin,
String opReason
)
Return value details
name | type | description |
---|---|---|
groupID | String | The group ID. |
opUser | V2TimGroupMemberInfo | The handler. |
isAgreeJoin | bool | Whether or not approved. |
opReason | String | The reason for the operation. |
Code example
V2TimGroupListener listener = V2TimGroupListener(
onApplicationProcessed: (String groupID, V2TimGroupMemberInfo opUser,
bool isAgreeJoin, String opReason) async {
},
);
TencentImSDKPlugin.v2TIMManager.addGroupListener(listener: listener);