Stop constructor

Stop(
  1. ArcGISPoint point
)

Creates a stop instance with point.

Creates a stop.

Parameters:

  • point — A point.

Implementation

factory Stop(
  ArcGISPoint point,
) {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Stop_createWithPoint(
      point._handle,
      errorHandler,
    );
  });
  return Stop._withHandle(handle);
}