text property

String get text

Display text for the item, when present.

Returns

  • String: text content for the item, or an empty string if not assigned.

Implementation

String get text {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SignpostItem',
    'getText',
  );

  return resultString['result'];
}