isUpdatable property

bool get isUpdatable

Whether a newer version of this item is available in the content store.

Returns

  • true when an update is available, otherwise false.

Also see:

  • updateItem - The content store item representing the available update.
  • ContentUpdater - Manage content updates in the content store.

Implementation

bool get isUpdatable {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'isUpdatable',
  );

  return resultString['result'];
}