FadeInStandard constructor

const FadeInStandard({
  1. Key? key,
  2. required Widget child,
  3. Duration delay = Duration.zero,
  4. bool autoPlay = true,
  5. VoidCallback? onComplete,
  6. VoidCallback? onCancel,
  7. bool maintainState = true,
  8. bool respectSystemPreferences = true,
})

Implementation

const FadeInStandard({
  super.key,
  required this.child,
  this.delay = Duration.zero,
  this.autoPlay = true,
  this.onComplete,
  this.onCancel,
  this.maintainState = true,
  this.respectSystemPreferences = true,
});