data class DownloadProgressEvent : PageEvent
Fired when download makes progress. Last call has |done| == true.
<init> |
Fired when download makes progress. Last call has |done| == true. DownloadProgressEvent(guid: String, totalBytes: Double, receivedBytes: Double, state: String) |
guid |
Global unique identifier of the download. val guid: String |
receivedBytes |
Total bytes received. val receivedBytes: Double |
state |
Download status. val state: String |
totalBytes |
Total expected bytes to download. val totalBytes: Double |