LoaderEffect constructor

const LoaderEffect({
  1. Key? key,
  2. Size size = const Size(50, 50),
  3. Color? color1,
  4. Color? color2,
  5. Color? color3,
  6. double scale = 0.25,
  7. double speed = 0.25,
  8. double length = 0.6,
  9. double radius = 0.035,
  10. double fading = 0.2,
  11. double glow = 4,
})

Implementation

const LoaderEffect(
    {super.key,
    this.size = const Size(50, 50),
    this.color1,
    this.color2,
    this.color3,
    this.scale = 0.25,
    this.speed = 0.25,
    this.length = 0.6,
    this.radius = 0.035,
    this.fading = 0.2,
    this.glow = 4});