valueParameters property

List<KParameter> get valueParameters

Returns parameters of this callable, excluding the this instance and the extension receiver parameter.

Implementation

List<KParameter> get valueParameters => parameters
    .where((element) => element.kind == KParameterKind.VALUE)
    .toList();