In Java or Dart, we can create package private class that can perform only into this package. From outside this package, we can't invoke this class or this class's methods. Do there any way to do this in kotlin?
Note : If I create class kotlin_class{}
than I can't extends this class form other class in same package. I need to change it into open class ktolin_class{}
. If I use open keyword here, this class can invoke from outside this package.