setPointBarriers method
- List<
PointBarrier> pointBarriers
Sets point barriers.
Parameters:
pointBarriers
— A List of PointBarrier instances. Contents of the List are copied.
Implementation
void setPointBarriers(
List<PointBarrier> pointBarriers,
) {
final corePointBarriers = pointBarriers.toMutableArray(
valueType: _ElementType.pointBarrier,
);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceAreaParameters_setPointBarriers(
_handle,
corePointBarriers._handle,
errorHandler,
);
});
}