FadeOverlay.top constructor

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

Implementation

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