parametersWhere method

Iterable<ParameterReflection> parametersWhere(
  1. bool test(
    1. ParameterReflection parameter
    )
)

Returns a List of ParameterReflection that matches test.

Implementation

Iterable<ParameterReflection> parametersWhere(
        bool Function(ParameterReflection parameter) test) =>
    allParameters.where(test);