phoneme property
String
get
phoneme
Phonetic transcription (phoneme) for the item text, when available.
Use this value for high-quality text-to-speech rendering when present.
Returns
String: phoneme string, or an empty string if not assigned.
Implementation
String get phoneme {
final OperationResult resultString = objectMethod(
pointerId,
'SignpostItem',
'getPhoneme',
);
return resultString['result'];
}