Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- data class Item(val id:Int,var isChecked:Boolean)
- val list = listOf(Item(1,true),Item(2,true))
- val newList = list.forEach{
- it.isCheched=false
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement