faderTop method
Make gradient fader from the top of the widget.
strength ranges from 0.0 (subtle) to 1.0 (strong).
Implementation
FadeOverlay faderTop({double strength = 0.2, Color color = Colors.black}) {
return FadeOverlay.top(strength: strength, color: color, child: this);
}