updateVersion property
The Version object describing an available update for this item.
Returns
- A Version when an update exists, otherwise a Version where Version.isValid is false.
Implementation
Version get updateVersion {
final OperationResult resultString = objectMethod(
pointerId,
'ContentStoreItem',
'getUpdateVersion',
);
return Version.fromJson(resultString['result']);
}