HorizontalVerticalTransformation.withStep constructor

HorizontalVerticalTransformation.withStep(
  1. HorizontalVerticalTransformationStep step
)

Create a single step transformation.

Parameters:

Implementation

factory HorizontalVerticalTransformation.withStep(
    HorizontalVerticalTransformationStep step) {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_HorizontalVerticalTransformation_createWithStep(
        step._handle, errorHandler);
  });
  return HorizontalVerticalTransformation._withHandle(handle);
}