fileName property

String get fileName

Get the voice file name.

This contains the whole path to the voice file.

Returns

  • The voice file name

Throws

  • An exception if it fails.

Implementation

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