stop method

Future<Profile> stop()

Returns: Recorded profile.

Implementation

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