withLeftAndRightFade method
Implementation
Widget withLeftAndRightFade({
  required BuildContext context,
  Color? fadeColor,
}) {
  return FadeContainer.leftAndRight(
    context: context,
    child: this,
    fadeColor: fadeColor,
  );
}Widget withLeftAndRightFade({
  required BuildContext context,
  Color? fadeColor,
}) {
  return FadeContainer.leftAndRight(
    context: context,
    child: this,
    fadeColor: fadeColor,
  );
}