Escaped constructor

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

Creates an Escaped widget.

The child must not be null.

Implementation

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