Issue
I want to add code reference in comments docs like following screen shoot.
But this result I got
I really glad if someone guide me some gits or useful links for results that I want. Thanks
Solution
I am coming a little bit late,
So, linking comment are only allowed outside of the blocks.
As you can see, the first one is outside the class' block, If you put your linking comment outside of any block inside the dart file, will work in any other case, it won't.
///Outside class' block [hello] => THIS WILL WORK
class ClassName {
///Inside class' block [hello] => THIS WON'T WORK
void hello(){
}
}
Hope I helped :)
Answered By - Prodromos Sarakinou
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.