NyFader.bottom constructor
NyFader.bottom({
- required Widget child,
- Color color = Colors.black,
- int strength = 1,
- List<
AlignmentGeometry> alignment = const [Alignment.topCenter, Alignment.bottomCenter],
NyFader from bottom to top
Implementation
NyFader.bottom(
{required this.child,
this.color = Colors.black,
this.strength = 1,
this.alignment = const [Alignment.topCenter, Alignment.bottomCenter]}) {
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');
}