InnerShadow constructor

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

Implementation

const InnerShadow({
  super.key,
  this.blur = 10,
  this.color = Colors.black54,
  this.offset = const Offset(10, 10),
  super.child,
});