image property
Get the image of the item
Returns
- The image of the item if available, otherwise empty image
Throws
- An exception if it fails
Implementation
Uint8List get image {
final OperationResult resultString = objectMethod(
_pointerId,
'OverlayItem',
'image',
);
return base64Decode(resultString['result']);
}