MBlurryContainer constructor

const MBlurryContainer({
  1. Key? key,
  2. Widget? child,
  3. double? sigma = 8.0,
  4. double opacity = 0.75,
  5. BorderRadius borderRadius = BorderRadius.zero,
  6. BoxConstraints constraints = const BoxConstraints(),
  7. BoxDecoration decoration = const BoxDecoration(),
  8. EdgeInsets? padding,
  9. Color? color,
  10. double? height,
  11. double? width,
})

Implementation

const MBlurryContainer({
  super.key,
  this.child,
  this.sigma = 8.0,
  this.opacity = 0.75,
  this.borderRadius = BorderRadius.zero,
  this.constraints = const BoxConstraints(),
  this.decoration = const BoxDecoration(),
  this.padding,
  this.color,
  this.height,
  this.width,
});