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