livedata library

Classes

LiveData<T>
Observable state holder that allows for imperatively setting and reading the state value
LiveDataBuilder<T>
A Widget that observes a LiveData and rebuilds on change
LiveDataListener<T>
A LiveData observer that invokes a change listener on LiveData change
MutableLiveData<T>
An Updateable LiveData as the name suggests

Typedefs

LiveDataObserver<T> = void Function(T)