Yuri Drigin
12/04/2020, 5:30 AMval word: Live<String> = _word
Adam Powell
12/04/2020, 5:39 AMallan.conda
12/04/2020, 5:41 AMval word: LiveData<String> = _word
is less efficient than
val word: LiveData<String> get() = _word
?Yuri Drigin
12/04/2020, 5:56 AMAdam Powell
12/04/2020, 6:34 AMget() =
it means you create a new field in the object to hold the value