withLeftAndRightFade method

Widget withLeftAndRightFade({
  1. required BuildContext context,
  2. Color? fadeColor,
})

Implementation

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