DebugGate constructor

const DebugGate({
  1. required Widget child,
  2. Widget fallback = const SizedBox.shrink(),
  3. Key? key,
})

Implementation

const DebugGate({
  required this.child,
  this.fallback = const SizedBox.shrink(),
  super.key,
});