DrawingStroke constructor

const DrawingStroke({
  1. required List<Offset> points,
  2. required double size,
  3. required Color color,
  4. required Path path,
})

Implementation

const DrawingStroke({
  required this.points,
  required this.size,
  required this.color,
  required this.path,
});