findAll method

ParameterList findAll(
  1. String key
)

Search for all occurrences of a parameter identifier in the list.

Parameters

  • key: Parameter key as string.

Returns

  • A ParameterList containing all matching parameters. The returned list is empty when there are no matches.

Implementation

ParameterList findAll(final String key) {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SearchableParameterList',
    'findAll',
    args: key,
  );
  return ParameterList.init(resultString['result']);
}