如何在飞镖评论中 link 到另一个方法

How to link to another methods in dart comments

我正在记录我的代码,我想 link 同一文件中的另一个方法

我想在评论中引用那个方法,这样任何阅读我评论的人都可以直接跳转到我的评论引用的那个方法

我正在记录的方法,我想 link 到同一文件中名为 toggleFavorite 的方法

// To avoid code duplication in [toggleFavorite] method
  void _toogleFav(newStatus) {
    isFavorite = newStatus;
    notifyListeners();
  }

这是我的最爱returns,以备不时之需

Future<void> toggleFavorite() async {

我想要什么

确切地说,我希望我的评论 [toggleFavorite] 中的这个词作为 link 工作,当我按下它时,无论创建或使用它,我都会被重定向到该方法

在方法周围使用三元组 ///[]

  /// To avoid code duplication in [toggleFavorite] method
  void _toogleFav(newStatus) {
    isFavorite = newStatus;
    notifyListeners();
  }