ScalifyDebugOverlay constructor

const ScalifyDebugOverlay({
  1. Key? key,
  2. required Widget child,
  3. bool enabled = true,
  4. double initialTop = 50.0,
  5. double initialRight = 16.0,
})

Creates a ScalifyDebugOverlay.

Implementation

const ScalifyDebugOverlay({
  super.key,
  required this.child,
  this.enabled = true,
  this.initialTop = 50.0,
  this.initialRight = 16.0,
});