previewUrl property

String get previewUrl

Optional web preview URL for the item.

The URL can be opened by the UI to show more details in a browser window.

Returns

  • The preview URL as a String, or an empty string when none is available.

Implementation

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

  return resultString['result'];
}