如何在 dart 文档注释中使用本地资源?这在使用基于 Web 的 url 时效果很好,如下所示:
/// ![A row of icons representing a pink heart, a green musical note, and a blue umbrella](https://flutter.github.io/assets-for-api-docs/assets/widgets/icon.png)
我想做的是引用我的资产文件夹中的一些图像资产并显示它们。像这样的东西:
///![](/assets/some/local/path.png)
///![](/assets/some/other/path.svg)
但是我无法获得任何相对的工作路径,这可能吗?