name property
A descriptive name for this display filter.
Implementation
String get name {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_DisplayFilter_getName(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set name(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_DisplayFilter_setName(
_handle, coreValue.bytes, errorHandler);
});
}