CheckerBackground constructor

const CheckerBackground({
  1. Key? key,
  2. Color? color,
  3. Gradient? gradient,
  4. Color? backgroundColor,
  5. Gradient? backgroundGradient,
  6. required Size boxSize,
  7. double strokeWidth = 1,
  8. double horizontalPadding = 0,
  9. double verticalPadding = 0,
  10. Widget? child,
})

Implementation

const CheckerBackground({
  super.key,
  this.color,
  this.gradient,
  this.backgroundColor,
  this.backgroundGradient,
  required this.boxSize,
  this.strokeWidth = 1,
  this.horizontalPadding = 0,
  this.verticalPadding = 0,
  this.child,
});