isUpdatable property
Check if item is updatable, i.e. it has a newer version available.
Returns
- True if the item is updatable, false otherwise
Throws
- An exception if it fails.
Implementation
bool get isUpdatable {
final OperationResult resultString = objectMethod(
_pointerId,
'ContentStoreItem',
'isUpdatable',
);
return resultString['result'];
}