fade method

Widget fade({
  1. Duration duration = const Duration(milliseconds: 300),
  2. Curve curve = Curves.easeOut,
  3. double beginOpacity = 0,
})

Fades the widget.

Implementation

Widget fade({
  Duration duration = const Duration(milliseconds: 300),
  Curve curve = Curves.easeOut,
  double beginOpacity = 0,
}) {
  return _animate(
    type: .fade,
    duration: duration,
    curve: curve,
    beginOpacity: beginOpacity,
    child: this,
  );
}