enable method

Future<void> enable()

Enables reporting of execution contexts creation by means of executionContextCreated event. When the reporting gets enabled the event will be sent immediately for each existing execution context.

Implementation

Future<void> enable() async {
  await _client.send('Runtime.enable');
}