items property
Gets the list of content items involved in the update process.
Returns the list of ContentStoreItem instances that are part of the currently prepared update. This collection is populated when the updater status transitions to ContentUpdaterStatus.fullyReady or ContentUpdaterStatus.partiallyReady.
Returns
List<ContentStoreItem>: Items targeted by the pending update.
Also see:
- ContentStoreItem.updateItem - Get the update item for a specific content store item.
Implementation
List<ContentStoreItem> get items {
final OperationResult resultString = objectMethod(
pointerId,
'ContentUpdater',
'getItems',
);
return ContentStoreItemList.init(resultString['result']).toList();
}