clone method

Stop clone()

Clones the Stop.

Return Value: A new Stop with the same values as the current Stop.

Implementation

Stop clone() {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Stop_clone(
      _handle,
      errorHandler,
    );
  });
  return Stop._fromHandle(
    objectHandle,
  )!;
}