BackgroundBlurLayerData constructor

BackgroundBlurLayerData({
  1. required Color color,
  2. required double radius,
  3. Offset offset = const Offset(64, 64),
  4. double opacity = 1,
  5. double rotation = 0,
  6. double scale = 1,
})

Implementation

BackgroundBlurLayerData({
  required this.color,
  required this.radius,
  super.offset,
  super.opacity,
  super.rotation,
  super.scale,
});