getInverse method
Returns the inverse of this geographic transformation step or null if the transformation is not invertible.
Return Value: A GeographicTransformationStep representing the inverse or null if an inverse does not exist.
Implementation
GeographicTransformationStep getInverse() {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeographicTransformationStep_getInverse(
_handle,
errorHandler,
);
});
return GeographicTransformationStep._fromHandle(
objectHandle,
)!;
}