snippet property

String snippet

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();
}
void snippet=(String value)

Implementation

set snippet(String value) {
  final coreValue = _CString(value);
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Item_setSnippet(_handle, coreValue.bytes, errorHandler);
  });
}