faderLeft method

FadeOverlay faderLeft({
  1. double strength = 0.2,
  2. Color color = Colors.black,
})

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);
}