FadeOverlay.right constructor

const FadeOverlay.right({
  1. Key? key,
  2. required Widget child,
  3. Color color = Colors.black,
  4. double strength = 0.2,
})

Implementation

const FadeOverlay.right({
  super.key,
  required this.child,
  this.color = Colors.black,
  this.strength = 0.2,
}) : begin = Alignment.centerLeft,
     end = Alignment.centerRight;