image property
Get the image as a Img.
Prefer Img when you need SDK-managed metadata (uid, recommended size/aspectRatio, scalability) or to request raw image bytes.
Returns
- Img: The store image wrapper.
Implementation
Img get image {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkStore',
'getImage',
);
return Img.init(resultString['result']);
}