fileName property
Get the full path to the content data file when available.
Returns
- The full path to the content data file if the item is available on the device or empty otherwise.
Throws
- An exception if it fails.
Implementation
String get fileName {
final OperationResult resultString = objectMethod(
_pointerId,
'ContentStoreItem',
'getFileName',
);
return resultString['result'];
}