BackgroundGrid constructor

const BackgroundGrid({
  1. Key? key,
  2. BackgroundGridSettings settings = const BackgroundGridSettings(xDensity: 15.0, yDensity: 15.0, showLines: false),
})

Implementation

const BackgroundGrid({
  super.key,
  this.settings = const BackgroundGridSettings(
    xDensity: 15.0,
    yDensity: 15.0,
    showLines: false,
  ),
});