This commit is contained in:
hrxiang
2022-06-29 16:40:22 +08:00
parent cd61ebba7f
commit 7233b2e298
6 changed files with 32 additions and 6 deletions

View File

@@ -211,4 +211,12 @@ public class GroupManager extends BaseManager {
jsonValue(methodCall, "excludeUserIDList")
);
}
public void setGroupVerification(MethodCall methodCall, MethodChannel.Result result) {
Open_im_sdk.setGroupVerification(new OnBaseListener(result, methodCall),
value(methodCall, "operationID"),
value(methodCall, "groupID"),
value(methodCall, "needVerification")
);
}
}