RequestsInspector constructor

const RequestsInspector({
  1. Key? key,
  2. bool enabled = false,
  3. bool hideInspectorBanner = false,
  4. ShowInspectorOn showInspectorOn = ShowInspectorOn.Shaking,
  5. required Widget child,
})

Implementation

const RequestsInspector({
  Key? key,
  this.enabled = false,
  this.hideInspectorBanner = false,
  this.showInspectorOn = ShowInspectorOn.Shaking,
  required Widget child,
})  : _child = child,
      super(key: key);