DonateState

data class DonateState(val loading: Boolean = true, val supporters: List<Supporter> = emptyList()) : MviState(source)

Carries DonateState data through the SDAI presentation layer.

Author

Dmitriy Moroz

Constructors

Link copied to clipboard
constructor(loading: Boolean = true, supporters: List<Supporter> = emptyList())

Properties

Link copied to clipboard

Exposes the loading value used by the SDAI presentation layer.

Link copied to clipboard

Exposes the supporters value used by the SDAI presentation layer.