NicePulseWidget constructor

const NicePulseWidget({
  1. Key? key,
  2. required Widget child,
  3. Duration duration = const Duration(milliseconds: 1000),
  4. double minScale = 0.95,
  5. double maxScale = 1.05,
  6. bool repeat = true,
})

Implementation

const NicePulseWidget({
  super.key,
  required this.child,
  this.duration = const Duration(milliseconds: 1000),
  this.minScale = 0.95,
  this.maxScale = 1.05,
  this.repeat = true,
});