name property

String get name

Get the voice name.

Returns

  • The voice name

Throws

  • An exception if it fails.

Implementation

String get name {
  final OperationResult result = objectMethod(
    _pointerId,
    'Voice',
    'getName',
  );
  return result['result'];
}