DownloadProgressParameter

@Serializable
data class DownloadProgressParameter(val guid: String, val totalBytes: Double, val receivedBytes: Double, val state: String)

Fired when download makes progress. Last call has |done| == true. Deprecated. Use Browser.downloadProgress instead.

Constructors

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

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.