FlGridStyle constructor

const FlGridStyle({
  1. double gridSpacingX = 64.0,
  2. double gridSpacingY = 64.0,
  3. double lineWidth = 1.0,
  4. Color lineColor = const Color.fromARGB(64, 100, 100, 100),
  5. Color intersectionColor = const Color.fromARGB(128, 150, 150, 150),
  6. double intersectionRadius = 2,
  7. bool showGrid = true,
})

Implementation

const FlGridStyle({
  this.gridSpacingX = 64.0,
  this.gridSpacingY = 64.0,
  this.lineWidth = 1.0,
  this.lineColor = const Color.fromARGB(64, 100, 100, 100),
  this.intersectionColor = const Color.fromARGB(128, 150, 150, 150),
  this.intersectionRadius = 2,
  this.showGrid = true,
});