availableSize property

int get availableSize

Get the available size of the content in bytes.

Returns

  • The size of the downloaded content. This may or may not be equal with totalSize.

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}