LookupBoundary constructor

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

Creates a LookupBoundary.

A none-null child widget must be provided.

Implementation

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