ElDebugWidget constructor

const ElDebugWidget({
  1. Key? key,
  2. String? debugLabel,
  3. bool checkElement = false,
  4. bool checkLayout = false,
  5. bool checkPaint = false,
  6. Duration? filterTime,
  7. required Widget? child,
})

Implementation

const ElDebugWidget({
  super.key,
  this.debugLabel,
  this.checkElement = false,
  this.checkLayout = false,
  this.checkPaint = false,
  this.filterTime,
  required super.child,
});