openRawDataInNewWindow method

Future<void> openRawDataInNewWindow({
  1. required Map<String, dynamic> data,
  2. String title = 'Body',
  3. bool beautificationRequired = true,
})

Opens JSON / raw data (e.g. headers) in a new desktop window.

Implementation

Future<void> openRawDataInNewWindow({
  required Map<String, dynamic> data,
  String title = 'Body',
  bool beautificationRequired = true,
}) => _infospectNavigationHelper.openRawDataInNewWindow(
  data: data,
  title: title,
  beautificationRequired: beautificationRequired,
);