RaysBackground constructor

const RaysBackground({
  1. Key? key,
  2. double speed = 0.25,
  3. double scale = 0.015,
  4. double intensity = 2,
  5. double blur = 24.0,
  6. Color color = const Color(0xFF58C1FF),
  7. Color backgroundColor = Colors.transparent,
  8. Widget? child,
})

Implementation

const RaysBackground({
  super.key,
  this.speed = 0.25,
  this.scale = 0.015,
  this.intensity = 2,
  this.blur = 24.0,
  this.color = const Color(0xFF58C1FF),
  this.backgroundColor = Colors.transparent,
  this.child,
});