NyFader.top constructor

NyFader.top({
  1. required Widget child,
  2. Color color = Colors.black,
  3. int strength = 1,
  4. List<AlignmentGeometry> alignment = const [Alignment.bottomCenter, Alignment.topCenter],
})

NyFader from top to bottom

Implementation

NyFader.top(
    {required this.child,
    this.color = Colors.black,
    this.strength = 1,
    this.alignment = const [Alignment.bottomCenter, Alignment.topCenter]}) {
  assert(strength >= 1 && strength <= 5, 'strength must be between 1 and 5');
  assert(alignment.length == 2,
      'alignment must be a list of 2 AlignmentGeometry objects');
}