GridPainter constructor

GridPainter({
  1. double gridSize = 50.0,
  2. Color color = Colors.grey,
  3. double strokeWidth = 0.5,
})

Implementation

GridPainter({
  this.gridSize = 50.0,
  this.color = Colors.grey,
  this.strokeWidth = 0.5,
});