deleteJoinReq method

Future<void> deleteJoinReq(
  1. String id
)

Implementation

Future<void> deleteJoinReq(String id) async {
  final jwt = await getJwt();

  return Sentc.getApi().groupDeleteSentJoinReqUser(
    baseUrl: baseUrl,
    authToken: appToken,
    jwt: jwt,
    joinReqGroupId: id,
  );
}