clone method

RouteParameters clone()

Clones the RouteParameters.

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

Implementation

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