PulseRingLoader constructor

const PulseRingLoader({
  1. Key? key,
  2. double size = 20,
  3. Color color = Colors.blueAccent,
  4. Duration duration = const Duration(seconds: 1),
})

Implementation

const PulseRingLoader(
    {super.key,
    this.size = 20,
    this.color = Colors.blueAccent,
    this.duration = const Duration(seconds: 1)})
    : assert(size > 0, 'Size must be greater than zero.');