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