CustomBlurPlate constructor

const CustomBlurPlate({
  1. Key? key,
  2. required Widget child,
  3. double blurAmount = 6,
})

Implementation

const CustomBlurPlate({
  super.key,
  required this.child,
  this.blurAmount = 6,
});