totalSize property

int get totalSize

The total size of the content in bytes.

Returns

  • The total size in bytes. Returns 0 when the content is not available.

Also see:

Implementation

int get totalSize {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getTotalSize',
  );

  return resultString['result'];
}