you work with mutableList or ArrayList?
# android
a
you work with mutableList or ArrayList?
r
according to this wonderful cheatsheet of @s1m0nw1 you should better use List if possible - just if you need mutability MutableList is better
a
But to put into bundle?
m
mutableList
works in common modules, Kotlin/JS, Kotlin/Native etc. I think it is why it should be used instead as often as possible.