FadeIn constructor

FadeIn({
  1. double delay = 0,
  2. Duration? duration,
  3. Widget? child,
  4. bool fade = true,
  5. CustomAnimationControl control = CustomAnimationControl.PLAY,
  6. SlideFrom? from,
  7. Curve curve = Curves.ease,
})

Implementation

FadeIn({this.delay = 0,
  this.duration,
  this.child,
  this.fade = true,
  this.control = CustomAnimationControl.PLAY,
  this.from,
  this.curve = Curves.ease});