DebugAreaBounds constructor

const DebugAreaBounds({
  1. Key? key,
  2. Color color = Colors.blue,
  3. bool drawOver = false,
  4. Widget? child,
})

Implementation

const DebugAreaBounds({
  super.key,
  this.color = Colors.blue,
  this.drawOver = false,
  this.child,
});