So… has anyone played with `@Parcelize` of kotlin ...
# android
j
So… has anyone played with
@Parcelize
of kotlin 1.1.4 ? I can’t find a complete sample on Google… Kotlin blog has this
Copy code
@Parcelize
class User(val firstName: String, val lastName: String) : Parcelable
I could make the Parcelize import…but I could not make it compile…AS says I need to implement the Parcelable methods…
y
I had the same issue, haven't found a way around it...