HttpInspector constructor

const HttpInspector({
  1. required ValueGetter<GlobalKey<NavigatorState>> navigatorKey,
  2. required Widget child,
  3. bool showNotification = true,
  4. HttpInspectorPresentation presentation = HttpInspectorPresentation.screen,
  5. bool showFab = false,
  6. Key? key,
})

Implementation

const HttpInspector({
  required this.navigatorKey,
  required this.child,
  this.showNotification = true,
  this.presentation = HttpInspectorPresentation.screen,
  this.showFab = false,
  super.key,
});