BackgroundBlurLayerData constructor

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

Implementation

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