clone method
Clones the ServiceAreaParameters.
Return Value: A new ServiceAreaParameters with the same values as the current ServiceAreaParameters.
Implementation
ServiceAreaParameters clone() {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaParameters_clone(
_handle,
errorHandler,
);
});
return ServiceAreaParameters._fromHandle(
objectHandle,
)!;
}