OverlayWindow constructor

const OverlayWindow({
  1. required BuildContext context,
  2. required GlobalKey<State<StatefulWidget>> targetKey,
  3. OverlayPopDirection popDirection = OverlayPopDirection.bottom,
  4. Widget content = const SizedBox.shrink(),
})

Implementation

const OverlayWindow({
  required this.context,
  required this.targetKey,
  this.popDirection = OverlayPopDirection.bottom,
  this.content = const SizedBox.shrink(),
});