ViewShadow constructor

ViewShadow({
  1. Key? key,
  2. required List<Widget> views,
  3. Offset offset = const Offset(-1, -2),
  4. double radius = 0,
  5. double blurRadius = 5,
  6. Color colorShadow = colorShadown,
  7. double height = 80.0,
  8. double? width,
  9. bool padding = true,
})

Implementation

ViewShadow(
    {Key? key,
    required this.views,
    this.offset = const Offset(-1, -2),
    this.radius = 0,
    this.blurRadius = 5,
    this.colorShadow = colorShadown,
    this.height = 80.0,
    this.width,
    this.padding = true})
    : super(key: key);