SDKsFlutter
Retrieve received group applications
Retrieve received Flutter group applications by page.
Pass a GetGroupApplicationListAsRecipientReq with groupIDs, handleResults, offset, and count. A successful Future returns the List<GroupApplicationInfo> that the current user is permitted to handle.
final applications = await OpenIM.iMManager.groupManager
.getGroupApplicationListAsRecipient(
GetGroupApplicationListAsRecipientReq(
groupIDs: [groupID],
handleResults: [0],
offset: 0,
count: 20,
),
);Was this page helpful?