setBreakpointsActive method

Future<void> setBreakpointsActive(
  1. bool active
)

Activates / deactivates all breakpoints on the page. active New value for breakpoints active state.

Implementation

Future<void> setBreakpointsActive(bool active) async {
  await _client.send('Debugger.setBreakpointsActive', {
    'active': active,
  });
}