Graphs_dart/tex/dart/graph/dot.dart

7 lines
100 B
Dart

class Dot {
//Data
String _name = "";
int num = -1;
Map<int, int> _ln = <int, int>{};
***