damianpetla
11/22/2016, 2:45 PMval itemList: MutableList<VMItem> = arrayListOf()
instead
val itemList: MutableList<VMItem> = mutableListOf
I found in my old code that I have been using arrayListOf and I don’t know if changing to mutableListOf make it any better?