Progress

data class Progress(val size: Long = 0, val progress: Long = 0, val speed: Long = 0)

Progress data class to hold the progress of the download.

Parameters

size

The total size of the file, 0 if unknown.

progress

The progress of the download.

speed

The speed of the download in bytes per second, 0 if unknown.

Constructors

Link copied to clipboard
constructor(size: Long = 0, progress: Long = 0, speed: Long = 0)

Properties

Link copied to clipboard
val progress: Long = 0
Link copied to clipboard
val size: Long = 0
Link copied to clipboard
val speed: Long = 0