AnimateZWidget constructor

const AnimateZWidget({
  1. Key? key,
  2. required Widget child,
  3. required bool animate,
  4. AnimationType animationType = AnimationType.rotate,
  5. AnimationSpec? customAnimation,
})

Implementation

const AnimateZWidget({
  super.key,
  required this.child,
  required this.animate,
  this.animationType = AnimationType.rotate,
  this.customAnimation,
});