PolygonItem constructor

const PolygonItem({
  1. required List<(double, double)> vertices,
  2. Color? fillColor,
  3. Color strokeColor = const Color(0xFF374151),
  4. double strokeWidth = 2.0,
})

Implementation

const PolygonItem({
  required this.vertices,
  this.fillColor,
  this.strokeColor = const Color(0xFF374151),
  this.strokeWidth = 2.0,
});