Glassify constructor

const Glassify({
  1. required Widget child,
  2. LiquidGlassSettings settings = const LiquidGlassSettings(),
  3. Key? key,
})

Creates a new Glassify with the given child and settings.

Implementation

const Glassify({
  required this.child,
  this.settings = const LiquidGlassSettings(),
  super.key,
});