VxInnerShadow constructor

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

Implementation

const VxInnerShadow({
  Key? key,
  this.blur = 10,
  this.color = Colors.black38,
  this.offset = const Offset(10, 10),
  Widget? child,
}) : super(key: key, child: child);