Files
iroute/lib/cases/paper/model.dart
toly e95c34018e 9
2023-09-22 09:15:11 +08:00

14 lines
215 B
Dart

import 'package:flutter/material.dart';
class Line {
List<Offset> points;
Color color;
double strokeWidth;
Line({
required this.points,
this.color = Colors.black,
this.strokeWidth = 1,
});
}