find method
- String key
Search for first occurrence of a parameter identifier and get the localized display name of the parameter.
Parameters
key: Parameter key as string.
Returns
- The localized name of the parameter if found, or an empty string when no parameter with the given key exists.
Implementation
String find(final String key) {
final OperationResult resultString = objectMethod(
pointerId,
'SearchableParameterList',
'find',
args: key,
);
return resultString['result'];
}