FrostedContainerWidget constructor

const FrostedContainerWidget({
  1. Key? key,
  2. Widget? child,
  3. double blurAmount = 15.0,
  4. int opacity = ColorsCommon.alphaForOverlay,
  5. double borderRadius = 0.0,
  6. Color color = Colors.white,
})

Implementation

const FrostedContainerWidget({
  super.key,
  this.child,
  this.blurAmount = 15.0,
  this.opacity = ColorsCommon.alphaForOverlay,
  this.borderRadius = 0.0,
  this.color = Colors.white,
});