ApiDebuggerWrapper constructor

const ApiDebuggerWrapper({
  1. Key? key,
  2. required Widget child,
  3. void onTrigger(
    1. BuildContext context
    )?,
  4. int tapCount = 6,
})

Implementation

const ApiDebuggerWrapper({
  super.key,
  required this.child,
  this.onTrigger,
  this.tapCount = 6,
});