label property
A label for the unique value. "Residential", for example.
Implementation
String get label {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_UniqueValue_getLabel(
_handle,
errorHandler,
);
});
return stringHandle.toDartString();
}
Implementation
set label(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_UniqueValue_setLabel(
_handle,
coreValue.bytes,
errorHandler,
);
});
}