stopInvites method

Future<void> stopInvites()

Implementation

Future<void> stopInvites() async {
  final jwt = await getJwt();

  return Sentc.getApi().groupStopGroupInvites(
    baseUrl: baseUrl,
    authToken: appToken,
    jwt: jwt,
    id: groupId,
    adminRank: rank,
    groupAsMember: accessByGroupAsMember,
  );
}