CustomInnerShadow constructor

const CustomInnerShadow({
  1. Key? key,
  2. List<Shadow> shadows = const <Shadow>[],
  3. required Widget child,
})

Implementation

const CustomInnerShadow({
  Key? key,
  this.shadows = const <Shadow>[],
  required Widget child,
}) : super(key: key, child: child);