setAttachDebugStack method

Future<void> setAttachDebugStack(
  1. bool enabled
)

Specifies whether to attach a page script stack id in requests enabled Whether to attach a page script stack for debugging purpose.

Implementation

Future<void> setAttachDebugStack(bool enabled) async {
  await _client.send('Network.setAttachDebugStack', {
    'enabled': enabled,
  });
}