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