NicePulse constructor

const NicePulse({
  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 enabled = true,
})

Implementation

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