unmarshall

fun unmarshall(data: ByteArray): Parcel

Unmarshall a byte array, previously generated with ParcelUtil.marshall. Note: Do not forget to call Parcel.recycle, after you are done with the Parcel.

fun <T> unmarshall(data: ByteArray, creator: Parcelable.Creator<T>): T

Recreates a Parcelable that was previously marshalled.