BackgroundWorkState
data class BackgroundWorkState(val visible: Boolean = false, val title: String = "", val subTitle: String = "", val image: ImageBitmap? = null, val isError: Boolean = false) : MviState(source)
Carries BackgroundWorkState data through the SDAI presentation layer.
Author
Dmitriy Moroz
Constructors
Link copied to clipboard
constructor(visible: Boolean = false, title: String = "", subTitle: String = "", image: ImageBitmap? = null, isError: Boolean = false)