HorizontalVerticalTransformation.withStep constructor
Create a single step transformation.
Parameters:
step
— A HorizontalVerticalTransformationStep instance.
Implementation
factory HorizontalVerticalTransformation.withStep(
HorizontalVerticalTransformationStep step) {
_initializeArcGISEnvironmentIfNeeded();
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_HorizontalVerticalTransformation_createWithStep(
step._handle, errorHandler);
});
return HorizontalVerticalTransformation._withHandle(handle);
}