BackgroundGridSettings constructor

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

Implementation

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