I want to have Kotlin
class with constructor and get another class as parameter like this.
class LogHelper(cls : class) {
}
I had the same class in java and I didn't have any problem with it.
public LogHelper(Class cls) {
LOG_TAG = cls.getSimpleName();
}