isImagePreviewAvailable property
Check if there is an image preview available on the client.
Returns
- True if an image preview is available, false otherwise
Throws
- An exception if it fails.
Implementation
bool get isImagePreviewAvailable {
final OperationResult resultString = objectMethod(
_pointerId,
'ContentStoreItem',
'isImagePreviewAvailable',
);
return resultString['result'];
}