extraImg property
Get extra image
Returns
- Extra image. The user is responsible to check if the image is valid
Throws
- An exception if it fails.
Implementation
Img get extraImg {
final OperationResult resultString = objectMethod(
_pointerId,
'Landmark',
'getExtraImg',
);
return Img.init(resultString['result']);
}
Set extra image
Parameters
- Extra image to be set
Throws
- An exception if it fails.
Implementation
set extraImg(Img value) {
objectMethod(_pointerId, 'Landmark', 'setExtraImg', args: value.pointerId);
}