I've got data class
that contains variable of type PagedList?. This class needs to implement Parcelable
because I want to save its state inside my Bundle
.
How can I parcel objects of this type? @Parcelize
doesn't help. How can I write a custom Parceler
for PagedList
? Or maybe there's another way by some kind of object wrapping?