Vitrify constructor

const Vitrify({
  1. Key? key,
  2. required Widget child,
  3. double opacity = .4,
  4. BorderRadius? radius,
  5. Color color = Colors.white,
})

Implementation

const Vitrify({
  Key? key,
  required this.child,
  this.opacity = .4,
  this.radius,
  this.color = Colors.white,
}) : super(key: key);