hasAmbiguity property

bool get hasAmbiguity

Whether the item is ambiguous and should be avoided for TTS output.

When true, the item may not be suitable for text-to-speech and callers should prefer unambiguous alternatives when generating spoken instructions.

Returns

  • bool: true when the item is ambiguous; otherwise false.

Implementation

bool get hasAmbiguity {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SignpostItem',
    'hasAmbiguity',
  );

  return resultString['result'];
}