InnerShadow constructor

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

Implementation

const InnerShadow({
  Key? key,
  this.color,
  this.blur,
  this.offset,
  Widget? child,
}) : super(key: key, child: child);