I’m encountering a situation where all the child c...
# kotlin-native
s
I’m encountering a situation where all the child classes of a sealed class aren’t accessible from Swift, or visible in the header file. Is there any reason that might be?
Copy code
sealed class VideoDownloadProgress {
    object NotStarted : VideoDownloadProgress()
    object Started : VideoDownloadProgress()
    data class Progress(val percent: Float) : VideoDownloadProgress()
    object Completed : VideoDownloadProgress()
}