name property
The name of a polyline barrier.
Implementation
String get name {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PolylineBarrier_getName(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set name(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PolylineBarrier_setName(
_handle, coreValue.bytes, errorHandler);
});
}