FadeInElastic constructor
const
FadeInElastic({
- Key? key,
- required Widget child,
- Duration duration = const Duration(milliseconds: 800),
- Duration delay = Duration.zero,
- bool autoPlay = true,
- VoidCallback? onComplete,
- VoidCallback? onCancel,
- bool maintainState = true,
- bool respectSystemPreferences = true,
Implementation
const FadeInElastic({
super.key,
required this.child,
this.duration = const Duration(milliseconds: 800),
this.delay = Duration.zero,
this.autoPlay = true,
this.onComplete,
this.onCancel,
this.maintainState = true,
this.respectSystemPreferences = true,
});