items property

List<ContentStoreItem> get items

Gets the list of content items involved in the update process.

Returns

Throws

  • An exception if it fails.

Implementation

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

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