isImagePreviewAvailable property

bool get isImagePreviewAvailable

Whether a preview image for this content item is available on the client.

Returns

  • true when a preview image exists locally, otherwise false.

Implementation

bool get isImagePreviewAvailable {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'isImagePreviewAvailable',
  );

  return resultString['result'];
}