BenchmarkState
data class BenchmarkState(val loadingDevice: Boolean = true, val loadingResult: Boolean = true, val running: Boolean = false, val deviceInfo: BenchmarkDeviceInfo? = null, val latestResult: BenchmarkResult? = null, val error: String? = null) : MviState(source)
Holds benchmark screen state.
Author
Dmitriy Moroz
Constructors
Link copied to clipboard
constructor(loadingDevice: Boolean = true, loadingResult: Boolean = true, running: Boolean = false, deviceInfo: BenchmarkDeviceInfo? = null, latestResult: BenchmarkResult? = null, error: String? = null)