items property
Gets the list of content items involved in the update process.
Returns
- List of ContentStoreItems in the update process.
Throws
- An exception if it fails.
Implementation
List<ContentStoreItem> get items {
final OperationResult resultString = objectMethod(
_pointerId,
'ContentUpdater',
'getItems',
);
return ContentStoreItemList.init(resultString['result']).toList();
}