Why does the `by` keyword not work with `mutableStateListOf` ?
m
Why does the
by
keyword not work with
mutableStateListOf
?
a
The state is tracked by instance already. No need for delegate getter/setter. You already have a list instance to work with.
💯 2
âž• 1