updateSize property

int get updateSize

The size in bytes of an available update for this item.

Note: querying this does not trigger the update; it only reports the size if an update is available.

Returns

  • The update size in bytes, or 0 when no update is available.

Implementation

int get updateSize {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getUpdateSize',
  );

  return resultString['result'];
}