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