SDKsFlutter
Retrieve sent group applications
Retrieve group applications sent by the current Flutter user by page.
Pass a GetGroupApplicationListAsApplicantReq. A successful Future returns applications sent by the current user. This query direction differs from received applications, while the pagination fields have the same meaning.
final applications = await OpenIM.iMManager.groupManager
.getGroupApplicationListAsApplicant(
GetGroupApplicationListAsApplicantReq(
groupIDs: [groupID],
handleResults: [0],
offset: 0,
count: 20,
),
);Was this page helpful?