Files
flutter_first_station/lib/paper/model.dart
2023-05-08 08:39:09 +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,
});
}