image property
Get the image of the overlay.
Returns
- Empty if image is not available.
Throws
- An exception if it fails
Implementation
Uint8List get image {
final OperationResult resultString = objectMethod(
_pointerId,
'OverlayInfo',
'image',
);
return base64Decode(resultString['result']);
}