stopPreciseCoverage method

Future<void> stopPreciseCoverage()

Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code.

Implementation

Future<void> stopPreciseCoverage() async {
  await _client.send('Profiler.stopPreciseCoverage');
}