DialogTransitionBuilder constructor

const DialogTransitionBuilder({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Widget dialog,
  4. DialogAnimationType? animationType,
  5. DialogAnimationDirection? startAnimation,
  6. DialogAnimationDirection? endAnimation,
  7. bool hideLikeCircle = false,
})

Implementation

const DialogTransitionBuilder({
  super.key,
  required this.animation,
  required this.dialog,
  this.animationType,
  this.startAnimation,
  this.endAnimation,
  this.hideLikeCircle = false,
});