14 lines
215 B
Dart
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,
|
|
});
|
|
|
|
} |