DebugOverlay constructor

DebugOverlay({
  1. required Widget child,
  2. bool enabled = true,
  3. DebugOverlayPosition position = DebugOverlayPosition.topRight,
  4. Key? key,
})

Implementation

DebugOverlay({
  required this.child,
  this.enabled = true,
  this.position = DebugOverlayPosition.topRight,
  super.key,
});