DiagonalStripesPainter constructor

DiagonalStripesPainter({
  1. double lineThickness = 2.0,
  2. Color color = const Color(0xFF000000),
  3. double spacing = 10.0,
})

Implementation

DiagonalStripesPainter({
  this.lineThickness = 2.0,
  this.color = const Color(0xFF000000),
  this.spacing = 10.0,
});