`MyClass::class.memberProperties` should be what y...
# announcements
d
MyClass::class.memberProperties
should be what you want.
👍 1
u
@jlleitschuh This will also return the properties inside the class, however. If you want to only get properties from the constructor, there's no nice way to do that yet, but you can match them (by name) with parameters of the primary constructor (
MyClass::class.primaryConstructor!!.parameters
)