openNetworkBodyInNewWindow method

Future<void> openNetworkBodyInNewWindow({
  1. required InfospectNetworkCall call,
  2. required NetworkBodyKind kind,
  3. bool detailsInitiallyExpanded = false,
})

Opens a network call body with request metadata in a new desktop window.

Implementation

Future<void> openNetworkBodyInNewWindow({
  required InfospectNetworkCall call,
  required NetworkBodyKind kind,
  bool detailsInitiallyExpanded = false,
}) =>
    _infospectNavigationHelper.openNetworkBodyInNewWindow(
      call: call,
      kind: kind,
      detailsInitiallyExpanded: detailsInitiallyExpanded,
    );