For the two given methods:
/**
* Adds a [DataItem] to the Android Wear network. The updated item is synchronized across all devices.
*/
fun putItem(){ .... }
/**
* "same KDOC here with above"
*/
fun putItem(putRequest: PutDataRequest){ .... }
Is there any possibility to copy/link the docs of the second method to be the same with the first one?
Manually copy pasting the KDOC is not so great because if you update one of them there is high chance the second to accidentally be outdated.