PulsingGradientLoader constructor

const PulsingGradientLoader({
  1. Key? key,
  2. double size = 200.0,
  3. double strokeWidth = 10.0,
  4. List<Color> colors = const [Colors.cyan, Colors.lightBlue],
})

Implementation

const PulsingGradientLoader({
  super.key,
  this.size = 200.0,
  this.strokeWidth = 10.0,
  this.colors = const [Colors.cyan, Colors.lightBlue],
});