In this documentation <https://developer.android.c...
# android
d
In this documentation https://developer.android.com/kotlin/parcelize, for advanced serialization logic they have used
private companion object
, is there a reason they have used
private
and what are the possible problems I can face if I use just
companion object
? It is not mentioned anywhere in the doc why they used
private