Cleaned

data class Cleaned<T : TrashItem>(val items: List<T>, val error: Throwable? = null) : CleanerState

The state of the cleaner, which displays information about the cleaning results.

Parameters

items

List of items found by the cleaner.

error

The error with which the cleaner finished.

Constructors

Link copied to clipboard
constructor(items: List<T>, error: Throwable? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val items: List<T>