2021-11-24 21:35:55 +04:00

7 lines
100 B
Dart

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