BackgroundConfig constructor

const BackgroundConfig({
  1. bool drawNormalSquares = true,
  2. bool drawHighlightedSquares = true,
  3. bool drawMarkers = true,
  4. double? opacity,
  5. bool modifyTranslucentOpacity = false,
  6. BoxDecoration squareDecoration = const BoxDecoration(),
})

Implementation

const BackgroundConfig({
  this.drawNormalSquares = true,
  this.drawHighlightedSquares = true,
  this.drawMarkers = true,
  this.opacity,
  this.modifyTranslucentOpacity = false,
  this.squareDecoration = const BoxDecoration(),
});