fade method
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,
);
}