image property

Uint8List get image

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']);
}