DesignGridDebugOverlay constructor

const DesignGridDebugOverlay({
  1. Key? key,
  2. Color color = const Color(0xFFFF00FF),
  3. bool isVisible = true,
  4. bool enableControls = true,
  5. bool isInBackground = false,
  6. required Widget child,
})

Implementation

const DesignGridDebugOverlay({
  super.key,
  this.color = const Color(0xFFFF00FF),
  this.isVisible = true,
  this.enableControls = true,
  this.isInBackground = false,
  required this.child,
});