clone method

ServiceAreaFacility clone()

Clones the ServiceAreaFacility.

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

Implementation

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