deleteJoinReq method
Implementation
Future<void> deleteJoinReq(String id) async {
final jwt = await getJwt();
return Sentc.getApi().groupDeleteSentJoinReq(
baseUrl: baseUrl,
authToken: appToken,
jwt: jwt,
id: groupId,
adminRank: rank,
joinReqGroupId: id,
groupAsMember: accessByGroupAsMember,
);
}