availableSize property

int get availableSize

The size in bytes currently available (downloaded) on the client.

Returns

  • The available size in bytes. May differ from totalSize.

Also see:

Implementation

int get availableSize {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getAvailableSize',
  );

  return resultString['result'];
}