I'm trying to hide a method that should be visible only for test usage.
Is there any equivalent for javadoc's @hide
I'm not an expert using KDoc neither JavaDoc, If I'm missing any concept please point me to it.
/** @hide */
fun methodToHide() : String = "foo"