description property

String description

The description of the specified item.

Implementation

String get description {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Item_getDescription(_handle, errorHandler);
  });
  return stringHandle.toDartString();
}
void description=(String value)

Implementation

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