isConstructorDefined

Determines whatever declaration is defined in constructor (true) or not (false).

e.g.

val topLevelProperty = "" // isConstructorDefined == false

class SampleClass(val constructorProperty: Int) { // isConstructorDefined == true
val bodyProperty = "" // isConstructorDefined == false
}