FadeInElastic constructor

const FadeInElastic({
  1. Key? key,
  2. required Widget child,
  3. Duration duration = const Duration(milliseconds: 800),
  4. Duration delay = Duration.zero,
  5. bool autoPlay = true,
  6. VoidCallback? onComplete,
  7. VoidCallback? onCancel,
  8. bool maintainState = true,
  9. 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,
});