previewUrl property

String get previewUrl

Get the preview URL for the item (if any).

The preview URL may be opened by the UI into a web browser window to present more details to the user about this item.

Returns

  • Empty if the item has no preview URL.

Throws

  • An exception if it fails

Implementation

String get previewUrl {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'OverlayItem',
    'previewurl',
  );

  return resultString['result'];
}