availableSize property
The size in bytes currently available (downloaded) on the client.
Returns
- The available size in bytes. May differ from totalSize.
Also see:
- totalSize - The total size of the content.
Implementation
int get availableSize {
final OperationResult resultString = objectMethod(
pointerId,
'ContentStoreItem',
'getAvailableSize',
);
return resultString['result'];
}