BackgroundBlur constructor

const BackgroundBlur({
  1. Key? key,
  2. Widget? background,
  3. required Widget child,
  4. AlignmentGeometry alignment = AlignmentDirectional.center,
  5. double sigmaX = 2,
  6. double sigmaY = 2,
  7. StackFit fit = StackFit.expand,
  8. bool clipped = false,
})

Implementation

const BackgroundBlur({
  super.key,
  this.background,
  required this.child,
  this.alignment = AlignmentDirectional.center,
  this.sigmaX = 2,
  this.sigmaY = 2,
  this.fit = StackFit.expand,
  this.clipped = false,
});