CrossPainter constructor

CrossPainter({
  1. required Color colour,
  2. double scale = 0.75,
  3. double strokeWidth = 2.0,
  4. StrokeCap strokeCap = StrokeCap.round,
})

Implementation

CrossPainter({
  required this.colour,
  this.scale = 0.75,
  this.strokeWidth = 2.0,
  this.strokeCap = StrokeCap.round,
});