setThumbnail method

void setThumbnail({
  1. ArcGISImage? image,
})

Sets the thumbnail of the item with the specified image.

Parameters:

  • image — The image (can be null).

Implementation

void setThumbnail({
  ArcGISImage? image,
}) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Item_setThumbnailWithImage(
      _handle,
      image?._handle ?? ffi.nullptr,
      errorHandler,
    );
  });
}