can we @Parcelize `sealed class` and pass it using...
# android
k
can we @Parcelize
sealed class
and pass it using safeArgs or Bundle ??
d
the sealed class will have to implement
Parcelable
, and the
@Parcelize
annotation should be applied to each subclasses of the sealed class
174 Views