FadeTransition({Key key, Animation<double> opacity, Widget child })

Creates an opacity transition.

The opacity argument is required.

Source

FadeTransition({
  Key key,
  Animation<double> opacity,
  this.child
}) : super(key: key, animation: opacity);