NUIFlipAnimation constructor

NUIFlipAnimation({
  1. required Widget initialChild,
  2. Widget? flippedChild,
  3. Duration? duration,
  4. FlipDirection direction = FlipDirection.VERTICAL,
  5. EndAnimationListener? endAnimationListener,
  6. Key? key,
})

Implementation

NUIFlipAnimation({
  required this.initialChild,
  this.flippedChild,
  this.duration,
  this.direction = FlipDirection.VERTICAL,
  this.endAnimationListener,
  Key? key
}): super(key: key);