findParameter method

GemParameter findParameter(
  1. String key
)

Search for the first occurrence of a parameter identifier and return the full GemParameter.

Parameters

  • key: Parameter key as string.

Returns

Implementation

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