If I have `val myString = MutableLiveData<Strin...
# android
c
If I have
val myString = MutableLiveData<String>()
why can I do
myString.value = null
in Kotlin? It seems like it should not compile no?