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)

Properties

Link copied to clipboard

Exposes the image value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the isError value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the subTitle value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the title value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the visible value used by the SDAI presentation layer.