Browse SDKs · Flutter
SDKsFlutter

Retrieve received group applications

Retrieve received Flutter group applications by page.

Copy

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,
  ),
);