withBottomFade method
Widget
withBottomFade({
- required BuildContext context,
- Color? fadeColor,
- double startFade = 0.97,
Implementation
Widget withBottomFade({
required BuildContext context,
Color? fadeColor,
double startFade = 0.97,
}) {
return FadeContainer.bottom(
context: context,
child: this,
fadeColor: fadeColor,
startFade: startFade,
);
}