ScaleChange constructor

const ScaleChange({
  1. Key? key,
  2. required Widget child,
  3. Duration duration = const Duration(milliseconds: 600),
  4. Duration delay = const Duration(milliseconds: 0),
  5. dynamic controller(
    1. AnimationController
    )?,
  6. bool manualTrigger = false,
  7. bool animate = true,
  8. double aniBegin = 0.0,
  9. double aniEnd = 1.0,
  10. double opacidadBegin = 0.0,
  11. double opacidadEnd = 1.0,
})

Implementation

const ScaleChange(
    {super.key,
    required this.child,
    this.duration = const Duration(milliseconds: 600),
    this.delay = const Duration(milliseconds: 0),
    this.controller,
    this.manualTrigger = false,
    this.animate = true,
    this.aniBegin = 0.0,
    this.aniEnd = 1.0,
    this.opacidadBegin = 0.0,
    this.opacidadEnd = 1.0});