softDelete method

Future<Either<BaseException, void>> softDelete()

Implementation

Future<Either<BaseException, void>> softDelete() {
  return post(
    AuthUrls.softDelete(getUserId ?? ''),
    mapper: (json) => {},
  );
}