innerShadow method

Widget innerShadow({
  1. Key? key,
  2. double blur = 2.0,
  3. Color color = Colors.black38,
  4. Offset offset = const Offset(2, 2),
})

Extension method for VxInnerShadow Widget

Implementation

Widget innerShadow({
  Key? key,
  double blur = 2.0,
  Color color = Colors.black38,
  Offset offset = const Offset(2, 2),
}) =>
    VxInnerShadow(
      key: key,
      blur: blur,
      child: this,
      color: color,
      offset: offset,
    );