description property

String description

The description of this renderer.

Implementation

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

Implementation

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