AnimationBuilder constructor
const
AnimationBuilder({
- Key? key,
- required Widget child,
- required AnimationType animationType,
- required AnimationPosition position,
- required AnimationController controller,
- bool buildWithAnimation = true,
- Duration animationDelay = Duration.zero,
- Duration duration = const Duration(milliseconds: 300),
- Curve curve = Curves.easeInOut,
- bool autoStart = true,
- int repeatCount = 0,
- bool reverse = false,
Implementation
const AnimationBuilder({
super.key,
required this.child,
required this.animationType,
required this.position,
required this.controller,
this.buildWithAnimation = true,
this.animationDelay = Duration.zero,
this.duration = const Duration(milliseconds: 300),
this.curve = Curves.easeInOut,
this.autoStart = true,
this.repeatCount = 0,
this.reverse = false,
});