BackgroundBlurLayer constructor

const BackgroundBlurLayer({
  1. Key? key,
  2. required BackgroundBlurLayerData layerData,
  3. VoidCallback? onUpdate,
  4. bool editable = false,
})

Implementation

const BackgroundBlurLayer({
  super.key,
  required this.layerData,
  this.onUpdate,
  this.editable = false,
});