DownloadProgress

@Serializable
data class DownloadProgress(val guid: String, val totalBytes: Double, val receivedBytes: Double, val state: DownloadProgressState) : BrowserEvent

Fired when download makes progress. Last call has |done| == true.

Official doc

Constructors

Link copied to clipboard
constructor(guid: String, totalBytes: Double, receivedBytes: Double, state: DownloadProgressState)

Properties

Link copied to clipboard

Global unique identifier of the download.

Link copied to clipboard

Total bytes received.

Link copied to clipboard

Download status.

Link copied to clipboard

Total expected bytes to download.