Andrey Ozornin
Andrey Ozornin

Reputation: 1158

How to generate a class diagram in Dart?

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.

Upvotes: 7

Views: 6707

Answers (1)

Andrey Ozornin
Andrey Ozornin

Reputation: 1158

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.

Upvotes: 14

Related Questions