How to generate a class diagram in Dart?

Viewed 3930

Is there a tool to generate a diagram of Dart classes in a project?

Not necessarily a strict UML diagram, I just want to visually represent the hierarchy of existing modules and see how they are interconnected.

1 Answers

I've found the dcdg package that is doing exactly what I want.

It generates PlantUML file which in order can be transformed into PNG or SVG image using PLantUML's demo web server or using other third-party tools.

Related