PrepareProgress constructor

PrepareProgress(
  1. int downloadedBytes,
  2. int totalBytes,
  3. int progress
)

Implementation

PrepareProgress(
  int downloadedBytes,
  int totalBytes,
  int progress,
)   : _downloadedBytes = downloadedBytes,
      _totalBytes = totalBytes,
      _progress = progress;