How can I list togather with data class in kotlin
# android
m
How can I list togather with data class in kotlin
g
could you please explain a bit, it’s not clear what you are trying to do
m
How do I work with lists collection in combination with data class
g
could you show some example
m
Sorry for dela here is the example
Copy code
data class Phone(var cost:Int,var name:String,var brand:String)
fun sortPhones(){
    var getPhone= mutableListOf<Any>()

}
g
still not sure what you trying to achieve, function call sort phones, just take a list and use any sort extension for it, depending on your case