download property

int get download

Gets the overall downloaded data size in bytes

Returns

  • The overall downloaded data size in bytes

Implementation

int get download {
  final OperationResult resultString = objectMethod(
    _pointerId,
    "TransferStatistics",
    "getDownload",
  );
  return resultString['result'];
}