GridConfig constructor

const GridConfig({
  1. double strokeWidth = 1,
  2. Color color = const Color(0xFFE0E0E0),
  3. List<double>? dashPattern,
})

Creates a grid configuration.

Implementation

const GridConfig({
  this.strokeWidth = 1,
  this.color = const Color(0xFFE0E0E0),
  this.dashPattern,
});