not sure what you mean
# getting-started
u
not sure what you mean
h
Copy code
val attribute: A
        get() {
            val property =
                target::class.memberProperties.first { it::class == attributeType } as KProperty1<Character, *>
            return property.get(target) as A
        }
got it