GlassBackdropScope constructor

const GlassBackdropScope({
  1. Key? key,
  2. required Widget child,
})

Creates a GlassBackdropScope.

This widget is now a no-op and returns its child directly.

Implementation

const GlassBackdropScope({
  super.key,
  required this.child,
});