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