FlDotCrossPainter constructor

FlDotCrossPainter({
  1. Color color = Colors.green,
  2. double size = 8.0,
  3. double width = 2.0,
})

The color and width properties determines the color and thickness of the cross shape, size determines the width and height of the shape.

Implementation

FlDotCrossPainter({
  this.color = Colors.green,
  this.size = 8.0,
  this.width = 2.0,
});