accessInformation property
The information on the source of the item and its copyright status.
Implementation
String get accessInformation {
final stringHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Item_getAccessInformation(_handle, errorHandler);
});
return stringHandle.toDartString();
}
Implementation
set accessInformation(String value) {
final coreValue = _CString(value);
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Item_setAccessInformation(
_handle, coreValue.bytes, errorHandler);
});
}