abstractGeometryImg property
Get the image of the abstract geometry image
Parameters
Returns
- The image for the abstract geometry image. The user is responsible to check if the image is valid.
Throws
- An exception if it fails.
Implementation
AbstractGeometryImg get abstractGeometryImg {
final OperationResult resultString = objectMethod(
_pointerId,
'TurnDetails',
'getAbstractGeometryImg',
);
return AbstractGeometryImg.init(resultString['result']);
}