SBlur constructor

const SBlur({
  1. Key? key,
  2. required Widget child,
  3. bool isEnabled = true,
  4. bool isAnimated = false,
  5. double blurAmountOnX = 7,
  6. double blurAmountOnY = 7,
  7. Duration? animationDuration,
})

Implementation

const SBlur({
  super.key,
  required this.child,
  this.isEnabled = true,
  this.isAnimated = false,
  this.blurAmountOnX = 7,
  this.blurAmountOnY = 7,
  this.animationDuration,
});