PulseRing constructor

const PulseRing({
  1. Key? key,
  2. double size = 48,
  3. Color? color,
  4. double strokeWidth = 2,
  5. Duration duration = const Duration(milliseconds: 1500),
  6. int ringCount = 3,
  7. Widget? child,
})

Implementation

const PulseRing({
  super.key,
  this.size = 48,
  this.color,
  this.strokeWidth = 2,
  this.duration = const Duration(milliseconds: 1500),
  this.ringCount = 3,
  this.child,
});