getInverse method

HorizontalVerticalTransformationStep getInverse()

Returns the inverse of this transformation step or null if the transformation is not invertible.

Return Value: A HorizontalVerticalTransformationStep representing the inverse or null if an inverse does not exist.

Implementation

HorizontalVerticalTransformationStep getInverse() {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_HorizontalVerticalTransformationStep_getInverse(
        _handle, errorHandler);
  });
  return HorizontalVerticalTransformationStep._fromHandle(objectHandle)!;
}