PulseAnimation constructor

const PulseAnimation({
  1. Key? key,
  2. bool isAnimating = true,
  3. double minScale = 1.0,
  4. double maxScale = 1.15,
  5. Duration duration = const Duration(milliseconds: 1200),
  6. required Widget child,
})

Implementation

const PulseAnimation({
  super.key,
  this.isAnimating = true,
  this.minScale = 1.0,
  this.maxScale = 1.15,
  this.duration = const Duration(milliseconds: 1200),
  required this.child,
});