notQueryNorPath function

List<ParamConfig> notQueryNorPath(
  1. List<ParamConfig> parameters
)

Implementation

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