TypeParceler

actual typealias TypeParceler<T, P> = kotlinx.parcelize.TypeParceler<T, P>
expect annotation class TypeParceler<T, P : Parceler<in T>>

A multiplatform alias for kotlinx.parcelize.TypeParceler from the kotlin-parcelize Gradle plugin. Make sure you have the kotlin-parcelize Gradle plugin applied.

Specifies what Parceler should be used for a particular type T.

actual annotation class TypeParceler<T, P : Parceler<in T>>