ModulaScaleOut constructor

const ModulaScaleOut({
  1. required Widget child,
  2. Key? key,
  3. Duration duration = const Duration(milliseconds: 300),
  4. Curve curve = Curves.easeIn,
  5. bool scaleOut = true,
  6. VoidCallback? onEnd,
})

Implementation

const ModulaScaleOut({
  required this.child,
  super.key,
  this.duration = const Duration(milliseconds: 300),
  this.curve = Curves.easeIn,
  this.scaleOut = true,
  this.onEnd,
});