FlyingWidget constructor

const FlyingWidget({
  1. Key? key,
  2. Widget? coverWidget,
  3. double flyHeight = 100,
  4. bool isTopStart = false,
  5. bool isShake = true,
  6. required AnimationController animationController,
  7. required Widget child,
})

Implementation

const FlyingWidget({
  super.key,
  this.coverWidget,
  this.flyHeight = 100,
  this.isTopStart = false,
  this.isShake = true,
  required this.animationController,
  required this.child,
});