HttpInspector constructor

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

Implementation

const HttpInspector({
  required this.navigatorKey,
  required this.child,
  this.showNotification = true,
  super.key,
});