description property
The description for the layer.
Implementation
String get description {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Layer_getDescription(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set description(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Layer_setDescription(
_handle, coreValue.bytes, errorHandler);
});
}