BackgroundGridSettings constructor

const BackgroundGridSettings({
  1. double xDensity = 15.0,
  2. double yDensity = 15.0,
  3. bool? showLines,
  4. bool? showDots,
  5. Color? lineColor,
  6. double? lineWidth,
  7. double? dotRadius,
  8. Color? dotColor,
})

Implementation

const BackgroundGridSettings({
  this.xDensity = 15.0,
  this.yDensity = 15.0,
  this.showLines,
  this.showDots,
  this.lineColor,
  this.lineWidth,
  this.dotRadius,
  this.dotColor,
});