SyncProgress

data class SyncProgress(val total: Int = 0, val current: Int = 0, val message: String? = null)

Data class that represents the progress of a sync operation.

Parameters

total

The total number of items to sync.

current

The current number of items synced.

message

The message to display during the sync operation.

Constructors

Link copied to clipboard
constructor(total: Int = 0, current: Int = 0, message: String? = null)

Properties

Link copied to clipboard
val current: Int = 0
Link copied to clipboard
val message: String? = null
Link copied to clipboard
val total: Int = 0