vmironov
12/30/2016, 3:43 PMdata class Message(
val message: String,
val timestamp: Long
) : AutoParcelable
…
Message.CREATOR.createFromParcel(...)
I'm not sure if there is a valid use case when I really to do so as an end user, I just thought it would be nice to at least have a replacement like AutoParcelable.creator<Message>().createFromParcel(...)
for this kind of situations.