getAllTimeSamplingProfile method

Future<SamplingProfile> getAllTimeSamplingProfile()

Retrieve native memory allocations profile collected since renderer process startup.

Implementation

Future<SamplingProfile> getAllTimeSamplingProfile() async {
  var result = await _client.send('Memory.getAllTimeSamplingProfile');
  return SamplingProfile.fromJson(result['profile'] as Map<String, dynamic>);
}