WriteWith

actual typealias WriteWith<P> = kotlinx.parcelize.WriteWith<P>
@Target(allowedTargets = [AnnotationTarget.TYPE])
expect annotation class WriteWith<P : Parceler<*>>

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

Specifies what Parceler should be used for the annotated type.

@Target(allowedTargets = [AnnotationTarget.TYPE])
actual annotation class WriteWith<P : Parceler<*>>