getEntries method

Returns all entries in the CrashReportContext across all frames in the page.

Implementation

Future<List<CrashReportContextEntry>> getEntries() async {
  var result = await _client.send('CrashReportContext.getEntries');
  return (result['entries'] as List)
      .map((e) => CrashReportContextEntry.fromJson(e as Map<String, dynamic>))
      .toList();
}