downloadProgress property

int get downloadProgress

Get current download progress.

Returns

  • Current download progress.

Throws

  • An exception if it fails.

Implementation

int get downloadProgress {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ContentStoreItem',
    'getDownloadProgress',
  );

  return resultString['result'];
}