startTrackingHeapObjects method
Implementation
Future<void> startTrackingHeapObjects({bool? trackAllocations}) async {
await _client.send('HeapProfiler.startTrackingHeapObjects', {
if (trackAllocations != null) 'trackAllocations': trackAllocations,
});
}