ColorizedShadow constructor

const ColorizedShadow({
  1. Key? key,
  2. required Widget child,
  3. required double height,
  4. bool isCircular = false,
  5. Color color = Colors.black,
})

Implementation

const ColorizedShadow({
  super.key,
  required this.child,
  required this.height,
  this.isCircular = false,
  this.color = Colors.black
});