sentJoinReq method
Implementation
Future<List<GroupInviteReqList>> sentJoinReq([GroupInviteReqList? lastFetchedItem]) async {
final jwt = await getJwt();
final lastFetchedTime = lastFetchedItem?.time.toString() ?? "0";
final lastFetchedGroupId = lastFetchedItem?.groupId ?? "none";
return Sentc.getApi().groupGetSentJoinReq(
baseUrl: baseUrl,
authToken: appToken,
jwt: jwt,
id: groupId,
adminRank: rank,
lastFetchedTime: lastFetchedTime,
lastFetchedGroupId: lastFetchedGroupId,
groupAsMember: accessByGroupAsMember,
);
}