Stop constructor

Stop(
  1. {required ArcGISPoint point}
)

Creates a stop instance with point.

Creates a stop.

Parameters:

  • point — A point.

Implementation

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