BlurredWrapper constructor

const BlurredWrapper({
  1. EdgeInsets? margin,
  2. EdgeInsets padding = const EdgeInsets.all(8),
  3. Color? backgroundColor,
  4. double borderRadius = 8,
  5. double blurX = 8,
  6. double blurY = 8,
})

Implementation

const BlurredWrapper({
  this.margin,
  this.padding = const EdgeInsets.all(8),
  this.backgroundColor,
  this.borderRadius = 8,
  this.blurX = 8,
  this.blurY = 8,
});