ScaleInAnimation constructor

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

Implementation

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