findParameter method

GemParameter findParameter(
  1. String key
)

Search for first occurrence of a parameter identifier.

Parameters

  • IN key Parameter key as string

Returns

Throws

  • An exception if it fails.

Implementation

GemParameter findParameter(final String key) {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SearchableParameterList',
    'findParameter',
    args: key,
  );
  return GemParameter.fromJson(resultString['result']);
}