BlurryContainer constructor

const BlurryContainer({
  1. Key? key,
  2. required Widget child,
  3. double? height,
  4. double? width,
  5. double blur = 5,
  6. double elevation = 0,
  7. EdgeInsetsGeometry padding = const EdgeInsets.all(8),
  8. Color color = Colors.transparent,
  9. Color shadowColor = Colors.black26,
  10. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(20)),
})

Implementation

const BlurryContainer({
  Key? key,
  required this.child,
  this.height,
  this.width,
  this.blur = 5,
  this.elevation = 0,
  this.padding = const EdgeInsets.all(8),
  this.color = Colors.transparent,
  this.shadowColor = Colors.black26,
  this.borderRadius = const BorderRadius.all(Radius.circular(20)),
}) : super(key: key);