isUpdatable property
Whether a newer version of this item is available in the content store.
Returns
truewhen an update is available, otherwisefalse.
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'];
}