clientVersion property
The locally installed Version of the content.
Requires that the content is available locally (available size > 0).
Returns
- The local Version. Check Version.isValid to determine whether a valid version is present.
Implementation
Version get clientVersion {
final OperationResult resultString = objectMethod(
pointerId,
'ContentStoreItem',
'getClientVersion',
);
return Version.fromJson(resultString['result']);
}