In Jetpack Compose , SnapshotStateList is a derived class from List but whenever I try to put Serializable annotation over it , it says "Serializer Not Found For This Class , To use contextual use @Contextual annotation with type or property"
I have a class ListContainer , I want to make serializable , it only contains a list of items which is a SnapshotStateList and can be smart casted to List but I don't know how to tell kotlin serializer to cast it to a List / use simple List serializer !