List<ParamConfig> notQueryNorPath(List<ParamConfig> parameters) { return parameters.where((p) { return !p.isPathParam && !p.isQueryParam; }).toList(); }