Vitrify constructor
const
Vitrify({
- Key? key,
- required Widget child,
- double opacity = .4,
- BorderRadius? radius,
- Color color = Colors.white,
Implementation
const Vitrify({
Key? key,
required this.child,
this.opacity = .4,
this.radius,
this.color = Colors.white,
}) : super(key: key);