fileName property

String get fileName

Get the full path to the local content data file when available.

Not downloaded content returns an empty string.

Returns

  • The full path to the content data file if the item is available on the device, or an empty string otherwise.

Implementation

String get fileName {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getFileName',
  );

  return resultString['result'];
}