updateItemPropertiesCancelable method
Cancelable version of updateItemProperties. See that method for more information.
Implementation
CancelableOperation<void> updateItemPropertiesCancelable() {
final taskHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Item_updateItemPropertiesAsync(
_handle, errorHandler);
});
return taskHandle.toCancelableOperation((_) {});
}