setImage method
- Img image
Set the landmark store image.
Parameters
- IN image The landmark store image.
Setting a valid landmark store image will override individual items images, see Landmark.getImage
Setting an empty landmark store image will restore individual items images, see Landmark.getImage
Returns
- GemError.success on success
Throws
- An exception if it fails.
Implementation
GemError setImage(Img image) {
final OperationResult resultString = objectMethod(
_pointerId,
'LandmarkStore',
'setImage',
args: image.pointerId,
);
return GemErrorExtension.fromCode(resultString['result']);
}