is there a way to generate class-level kdoc commen...
# intellij
b
is there a way to generate class-level kdoc comments for a class? something like:
Copy code
/**
* @property [a] 
* @property [b] 
* @property [c] 
**/
class Foo(
  val a: String,
  val b: String,
  val c: Int
) {
}