Hi. Is there clean way in Kotlin to get list of pr...
# announcements
o
Hi. Is there clean way in Kotlin to get list of properties of given Instance. Each individual and known property would be like ::property but I want to get list of all - without diving into actual java low-level reflection BS
q
::class.memberProperties
u should try
o
Thanks that's what I needed