fileName property

String get fileName

Returns the absolute file path for the voice asset on the device.

Returns

  • String: full path to the voice file.

Implementation

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