DebugPadding constructor

const DebugPadding({
  1. Key? key,
  2. Widget? child,
  3. bool showPadding = true,
  4. bool showViewPadding = true,
  5. bool showViewInsets = true,
  6. bool showSize = true,
})

Implementation

const DebugPadding({
  super.key,
  super.child,
  this.showPadding = true,
  this.showViewPadding = true,
  this.showViewInsets = true,
  this.showSize = true,
});