Hi, everyone! Does anyone know if it's possible to...
# dokka
s
Hi, everyone! Does anyone know if it's possible to link to a secondary constructor the same way we link to functions and properties?
Copy code
/**
 * Foo docs.
 *
 * @constructor Primary constructor docs. Can I somehow link to the secondary constructor?
 */
class Foo() {
    /**
     * Secondary constructor docs. Can I link to the primary constructor here?
     */
    constructor(someValue: Any) : this()
}