Sign in
skia
/
external
/
github.com
/
airbnb
/
lottie-android
/
11d516d68439c751d57a3f354ae85e3bfc88976f
/
.
/
LottieSample
/
src
/
main
/
kotlin
/
com
/
airbnb
/
lottie
/
samples
/
MvRxViewModel.kt
blob: 41ad0ea23109fcb9fe89962a33e00cc6020b5e3d [
file
] [
log
] [
blame
]
package
com
.
airbnb
.
lottie
.
samples
import
com
.
airbnb
.
mvrx
.
BaseMvRxViewModel
import
com
.
airbnb
.
mvrx
.
MvRxState
open
class
MvRxViewModel
<
S
:
MvRxState
>(
initialState
:
S
)
:
BaseMvRxViewModel
<
S
>(
initialState
,
BuildConfig
.
DEBUG
)