Blur constructor

const Blur({
  1. Key? key,
  2. bool applyInsets = false,
  3. double sigmaX = 2,
  4. double sigmaY = 2,
  5. BoxConstraints? constraints,
  6. required Widget child,
})

Implementation

const Blur({
  super.key,
  this.applyInsets = false,
  this.sigmaX = 2,
  this.sigmaY = 2,
  this.constraints,
  required this.child,
});