image property

Img get image

Get the landmark store image.

Returns

  • The image of the landmark. The user is responsible to check if the image is valid.

Throws

  • An exception if it fails.

Implementation

Img get image {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'LandmarkStore',
    'getImage',
  );

  return Img.init(resultString['result']);
}