description property

String get description

The description for the layer.

Implementation

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

Implementation

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