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:truewhen the item is ambiguous; otherwisefalse.
Implementation
bool get hasAmbiguity {
final OperationResult resultString = objectMethod(
pointerId,
'SignpostItem',
'hasAmbiguity',
);
return resultString['result'];
}