description property
A description of the unique value. "Parcels zoned for residential use", for example.
Implementation
String get description {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_UniqueValue_getDescription(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set description(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_UniqueValue_setDescription(
_handle, coreValue.bytes, errorHandler);
});
}