Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 870
Andrey Ozornin Avatar asked Mar 02 '23 07:03

Andrey Ozornin


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.

like image 140
Andrey Ozornin Avatar answered Mar 05 '23 03:03

Andrey Ozornin