snippet property
The short summary description of the specified item.
A short summary description of the item.
Implementation
String get snippet {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Item_getSnippet(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set snippet(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Item_setSnippet(_handle, coreValue.bytes, errorHandler);
});
}