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