enableDeviceBoundSessions method

Future<void> enableDeviceBoundSessions(
  1. bool enable
)

Sets up tracking device bound sessions and fetching of initial set of sessions. enable Whether to enable or disable events.

Implementation

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