updateItem property

ContentStoreItem? get updateItem

Return the ContentStoreItem that represents an in-progress update for this item.

Returns

Also see:

Implementation

ContentStoreItem? get updateItem {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getUpdateItem',
  );

  final int id = resultString['result'];
  if (id == -1) {
    return null;
  }
  return ContentStoreItem.init(id);
}