StampInAnimation constructor

const StampInAnimation({
  1. Key? key,
  2. required Widget child,
  3. AnimateType animateType = AnimateType.once,
  4. double durationMilliseconds = 600,
  5. Duration delay = const Duration(milliseconds: 0),
  6. double initScale = 1.8,
  7. bool developerMode = false,
})

Implementation

const StampInAnimation({
  super.key,
  required this.child,
  this.animateType = AnimateType.once,
  this.durationMilliseconds = 600,
  this.delay = const Duration(milliseconds: 0),
  this.initScale = 1.8,
  this.developerMode = false,
});