phoneme property

String get phoneme

Get the one based column.

Not all items may have a phoneme assigned.

Returns

  • Phoneme of the item

Throws

  • An exception if it fails.

Implementation

String get phoneme {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SignpostItem',
    'getPhoneme',
  );

  return resultString['result'];
}