items property

List<ContentStoreItem> get items

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:

Implementation

List<ContentStoreItem> get items {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentUpdater',
    'getItems',
  );

  return ContentStoreItemList.init(resultString['result']).toList();
}