flutter / devtools

Performance tools for Flutter
https://flutter.dev/docs/development/tools/devtools/
BSD 3-Clause "New" or "Revised" License
1.59k stars 326 forks source link

Select Widget outputs <inspected variable> into Debug Console instead of selecting the code in VS Code Editor #2522

Open kovalyovi opened 3 years ago

kovalyovi commented 3 years ago

I've noticed that sometimes (doesn't depend on anything, based on my experience with it) DevTools Widget Inspector, when in the Select Widget Mode and when you click on a widget in Android Emulator, instead of highlighting the source code in the project it just outputs <inspected variable> into VS Code DEBUG CONSOLE.

image

Previously, it would be solved when I reload VS Code but now I reinstalled VS Code, reinstalled Flutter and Dart extensions, wiped the emulator data and nothing helps - Flutter DevTools just doesn't work. How to fix that?

jacob314 commented 3 years ago

When this issue occurs what happens if you have dart devtools open to the inspector? Does the selection change in the widget tree or not?

Danny did you change anything related to how VSCode handles dart:developer inspect api?

DanTup commented 3 years ago

@jacob314 nothing has changed recently, but a while ago I made calling inpsect() on something that wasn't handled by the inspector (eg. we didn't get a widget summary for) print the variable to the output (to allow calling inspect() in user code to inspect variables):

https://github.com/Dart-Code/Dart-Code/pull/2560

For this to occur, it suggests that getSelectedSummaryWidget is either returning a null result, or that creationLocation is not set:

https://github.com/Dart-Code/Dart-Code/blob/7456077fdfd40ac928ef88afaad17add44ec2eff/src/debug/flutter_debug_impl.ts#L384-L393

I did some testing and couldn't repro this, though I did note that if you click the [root] node in the inspector this happens (it has a null result).

Do you know of anything that could prevent getSelectedSummaryWidget from returning a result?

kovalyovi commented 3 years ago

When this issue occurs what happens if you have dart devtools open to the inspector? Does the selection change in the widget tree or not?

If I understood you right when the Dart Devtools inspector is open and I click on a widget, it selects that widget in the widget tree but it does not select the widget in the code (doesn't open the file to the widget position).

I found out that this happens when I have multiple emulators running at the same time (I need it for correct positioning of widgets). I open both emulators from VS Code, select one of them (let's say number 2) as the 'default' for VS Code, run F5 to start the debug session, then use a different CLI to start the same application on a different emulator. To reproduce, I just have to switch the 'default' emulator in VS Code while the debug session is running. After that, it starts outputting the 'inspected variable' into the console until I remove the application from the device.

kovalyovi commented 3 years ago

@jacob314 Another update: right now after it starts outputting <inspected variable> upon a click on a widget instead of navigating to the code in the code window, it doesn't get fixed by uninstalling the application from the device. I tried clearing VS Code cache, uninstalling the application, running flutter clean but nothing seems to be working...

DanTup commented 3 years ago

I open both emulators from VS Code, select one of them (let's say number 2) as the 'default' for VS Code, run F5 to start the debug session, then use a different CLI to start the same application on a different emulator.

@jacob314 could building the app a second time be overwriting anything that might affect this? As far as VS Code is concerned here, there's only one app (the one launched from VS Code). The file system (/build folder) is the only thing I can think that would be shared/stateful (although I don't know whether that should impact the inspector at all).

kovalyovi commented 3 years ago

Any update on that guys?

DanTup commented 3 years ago

@jacob314 any thoughts on the above?

esentis commented 3 years ago

Today I started facing the same exactly issue on VS Code. Selecting a widget on "Select Widget Mode" just outputs on debug console . The issue is only present on VS Code, I tested the same project in Studio, it works as intended. Guess it's a VS Code bug ? image

DanTup commented 3 years ago

@esentis are you seeing this even without running the app on two devices/simulators at the same time? Do you have steps to reproduce?

esentis commented 3 years ago

@DanTup Yes, I'm running it in just one instance (emulator). Unfortunatelly I don't have any steps to reproduce, since it started occuring suddenly in a project that I'm working on for months, and it's mildly annoying. The issue is present only on this specific project. I'm sorry for not being more helpful...

kovalyovi commented 3 years ago

Guys are there any updates about this issue? It still persists on my project.

DanTup commented 3 years ago

@jacob314 any thoughts on how to track this down? I believe the VS Code behaviour of showing the inspected variable is somewhat unrelated. This only occurs when there's no widget summary. If I remove that, then inspecting will just do nothing at all. The problem is that response to getSelectedSummaryWidget is null or with no location.

@kovalyovi capturing a log may be useful:

This should capture the VM service traffic (which should include the response to getSelectedSummaryWidget) which might include some clues.

jacob314 commented 3 years ago

I'm not sure why getSelectedSummaryWidget would be causing a problem. Having a repo would be very helpful. Longer term we should file a bug on package:flutter to switch to just using an API to directly specify the source location to navigate to. Can you file a package:flutter bug to track that?

esentis commented 3 years ago

After the latest VS update the bug seems to be gone for me. I don't know if it was associated with it though :/

DanTup commented 3 years ago

I don't think there are any changes in this area in the VS Code extension, although Flutter 2.0 was around the same time which contained significantly more.

@kovalyovi do you still only see this when running multiple instances of flutter run?

@jacob314

Longer term we should file a bug on package:flutter to switch to just using an API to directly specify the source location to navigate to. Can you file a package:flutter bug to track that?

Happy to file an issue - although I'm not sure I entirely understand the request. Do you mean instead of firing the inspect event, there should be another event (or the same one) that includes the location directly (fired by the Inspector code in Flutter) avoiding the need to call ext.flutter.inspector.getSelectedSummaryWidget at all?

kovalyovi commented 3 years ago

@DanTup

@jacob314 any thoughts on how to track this down? I believe the VS Code behaviour of showing the inspected variable is somewhat unrelated. This only occurs when there's no widget summary. If I remove that, then inspecting will just do nothing at all. The problem is that response to getSelectedSummaryWidget is null or with no location.

@kovalyovi capturing a log may be useful:

  • Get the project ready to reproduce
  • Run the Dart: Capture Debugging Logs command from the VS Code command palette
  • Inspect the widget to reproduce the issue
  • Click Cancel on the logging notification to open the log file

This should capture the VM service traffic (which should include the response to getSelectedSummaryWidget) which might include some clues.

I apologize but reproducing is simply impossible. My project is 40k+ lines of code and it's private for the customer, so I can't provide reproducible code.

@kovalyovi do you still only see this when running multiple instances of flutter run?

No, I have it when only one emulator is running. I already forgot what it is to use Dart DevTools since it's giving so many problems that I can't use it effectively, so I use ctrl+shift+F in VS Code to find the widgets I need to modify. I wish there was a fix for that. It selects the widgets on the phone and in the DevTools but doesn't highlight it in VS Code (which I need more than anything else).

Logs ``` !! PLEASE REVIEW THIS LOG FOR SENSITIVE INFORMATION BEFORE SHARING !! Dart Code extension: 3.20.1 Flutter extension: 3.20.0 (activated) App: Visual Studio Code Version: 1.54.3 Platform: win Workspace type: Flutter Analyzer type: DAS Multi-root?: false Dart SDK: Loc: C:\src\flutter\bin\cache\dart-sdk Ver: 2.10.5 Flutter SDK: Loc: C:\src\flutter Ver: 1.22.6 HTTP_PROXY: undefined NO_PROXY: undefined Logging Categories: General, CommandProcesses, VmService, DevTools, FlutterDaemon, FlutterRun, FlutterTest, PubTest, WebDaemon Tue Mar 16 2021 [21:32:23 GMT-0600 (Mountain Daylight Time)] Log file started [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942092,"extensionData":{"number":133018,"startTime":195753894765,"elapsed":22197,"build":2912,"raster":14767,"vsyncOverhead":3633}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942092,"extensionData":{"number":133019,"startTime":195753912332,"elapsed":22976,"build":3218,"raster":14064,"vsyncOverhead":4529}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942093,"extensionData":{"number":133020,"startTime":195753929862,"elapsed":21542,"build":3320,"raster":12103,"vsyncOverhead":5406}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942093,"extensionData":{"number":133021,"startTime":195753944082,"elapsed":21628,"build":3762,"raster":13985,"vsyncOverhead":2948}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942093,"extensionData":{"number":133022,"startTime":195753963101,"elapsed":25901,"build":2464,"raster":17034,"vsyncOverhead":5295}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942093,"extensionData":{"number":133023,"startTime":195753979107,"elapsed":25522,"build":4729,"raster":14806,"vsyncOverhead":4647}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942093,"extensionData":{"number":133024,"startTime":195753996909,"elapsed":24091,"build":4419,"raster":12472,"vsyncOverhead":5800}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942230,"extensionData":{"number":133025,"startTime":195754015400,"elapsed":31580,"build":2403,"raster":20668,"vsyncOverhead":7625}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942230,"extensionData":{"number":133026,"startTime":195754028838,"elapsed":30664,"build":5371,"raster":14957,"vsyncOverhead":4385}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942230,"extensionData":{"number":133027,"startTime":195754046857,"elapsed":29781,"build":3729,"raster":15129,"vsyncOverhead":5736}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942230,"extensionData":{"number":133028,"startTime":195754064144,"elapsed":27619,"build":3826,"raster":12771,"vsyncOverhead":6361}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942230,"extensionData":{"number":133029,"startTime":195754081545,"elapsed":28622,"build":3948,"raster":16435,"vsyncOverhead":7107}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942230,"extensionData":{"number":133030,"startTime":195754095668,"elapsed":26293,"build":3730,"raster":13753,"vsyncOverhead":4562}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942230,"extensionData":{"number":133031,"startTime":195754114092,"elapsed":25229,"build":3218,"raster":14071,"vsyncOverhead":6325}}}} [9:32:23 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942230,"extensionData":{"number":133032,"startTime":195754129301,"elapsed":29652,"build":4129,"raster":19254,"vsyncOverhead":4865}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942497,"extensionData":{"number":133033,"startTime":195754148017,"elapsed":44596,"build":3561,"raster":29016,"vsyncOverhead":6913}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942501,"extensionData":{"number":133034,"startTime":195754166957,"elapsed":47606,"build":6977,"raster":18767,"vsyncOverhead":9216}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942501,"extensionData":{"number":133035,"startTime":195754197669,"elapsed":30879,"build":4182,"raster":15861,"vsyncOverhead":6589}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942502,"extensionData":{"number":133036,"startTime":195754213485,"elapsed":28967,"build":3636,"raster":14068,"vsyncOverhead":5728}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942502,"extensionData":{"number":133037,"startTime":195754229514,"elapsed":26745,"build":4190,"raster":13577,"vsyncOverhead":5084}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942502,"extensionData":{"number":133038,"startTime":195754247488,"elapsed":168015,"build":3632,"raster":156736,"vsyncOverhead":6408}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942502,"extensionData":{"number":133039,"startTime":195754265627,"elapsed":165899,"build":9200,"raster":10829,"vsyncOverhead":7891}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942625,"extensionData":{"number":133040,"startTime":195754410964,"elapsed":36565,"build":3778,"raster":19580,"vsyncOverhead":3288}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942626,"extensionData":{"number":133041,"startTime":195754433405,"elapsed":37884,"build":7395,"raster":17311,"vsyncOverhead":9062}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942626,"extensionData":{"number":133042,"startTime":195754461757,"elapsed":25390,"build":2866,"raster":16891,"vsyncOverhead":4069}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942626,"extensionData":{"number":133043,"startTime":195754513051,"elapsed":54401,"build":2613,"raster":12034,"vsyncOverhead":38691}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Debug","event":{"type":"Event","kind":"Inspect","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942662,"inspectee":{"type":"@Instance","class":{"type":"@Class","fixedId":true,"id":"classes\/3972","name":"RenderParagraph"},"kind":"PlainInstance","id":"objects\/192"}}}} [9:32:24 PM] [FlutterRun] [Info] [Flutter] ==> [{"id":"84","method":"app.callServiceExtension","params":{"appId":"b04db69d-20bf-4780-8dfb-293ef4aed888","methodName":"ext.flutter.inspector.getSelectedSummaryWidget","params":{"previousSelectionId":null,"objectGroup":"my-group"}}}] [9:32:24 PM] [FlutterRun] [Info] [Flutter] <== [{"id":"84","result":{"result":null,"type":"_extensionType","method":"ext.flutter.inspector.getSelectedSummaryWidget"}}] [9:32:24 PM] [VmService] [Info] [Flutter] ==> {"id":"32523","jsonrpc":"2.0","method":"invoke","params":{"argumentIds":[],"disableBreakpoints":true,"isolateId":"isolates/1914565772250643","selector":"toString","targetId":"objects/192"}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0", "result":{"type":"@Instance","_vmType":"String","class":{"type":"@Class","fixedId":true,"id":"classes\/81","name":"_OneByteString","_vmName":"_OneByteString@0150898"},"kind":"String","id":"objects\/193","length":43,"valueAsString":"RenderParagraph#e25e2 relayoutBoundary=up10"},"id":"32523"} [9:32:24 PM] [FlutterRun] [Info] [Flutter] ==> [{"id":"85","method":"app.callServiceExtension","params":{"appId":"b04db69d-20bf-4780-8dfb-293ef4aed888","methodName":"ext.flutter.inspector.disposeGroup","params":{"objectGroup":"my-group"}}}] [9:32:24 PM] [FlutterRun] [Info] [Flutter] <== [{"id":"85","result":{"result":null,"type":"_extensionType","method":"ext.flutter.inspector.disposeGroup"}}] [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942762,"extensionData":{"number":133044,"startTime":195754546283,"elapsed":27194,"build":4481,"raster":15872,"vsyncOverhead":5236}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942762,"extensionData":{"number":133045,"startTime":195754560596,"elapsed":27436,"build":3045,"raster":16171,"vsyncOverhead":2872}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942762,"extensionData":{"number":133046,"startTime":195754580833,"elapsed":28386,"build":4428,"raster":16544,"vsyncOverhead":6430}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942762,"extensionData":{"number":133047,"startTime":195754596692,"elapsed":37242,"build":9236,"raster":20825,"vsyncOverhead":5619}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942762,"extensionData":{"number":133048,"startTime":195754614334,"elapsed":38115,"build":7714,"raster":16757,"vsyncOverhead":6590}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942762,"extensionData":{"number":133049,"startTime":195754644777,"elapsed":22344,"build":2755,"raster":15002,"vsyncOverhead":3681}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942762,"extensionData":{"number":133050,"startTime":195754665242,"elapsed":29103,"build":2690,"raster":16771,"vsyncOverhead":7489}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942895,"extensionData":{"number":133051,"startTime":195754679510,"elapsed":33553,"build":3853,"raster":18477,"vsyncOverhead":5107}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942897,"extensionData":{"number":133052,"startTime":195754698993,"elapsed":35977,"build":3364,"raster":13610,"vsyncOverhead":7914}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942904,"extensionData":{"number":133053,"startTime":195754714327,"elapsed":41968,"build":3484,"raster":21010,"vsyncOverhead":6577}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942904,"extensionData":{"number":133054,"startTime":195754728708,"elapsed":39234,"build":3642,"raster":12947,"vsyncOverhead":4290}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942904,"extensionData":{"number":133055,"startTime":195754763481,"elapsed":23359,"build":3570,"raster":13119,"vsyncOverhead":5718}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942905,"extensionData":{"number":133056,"startTime":195754781295,"elapsed":28754,"build":2351,"raster":18329,"vsyncOverhead":6860}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951942905,"extensionData":{"number":133057,"startTime":195754799860,"elapsed":30629,"build":4859,"raster":15685,"vsyncOverhead":8746}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943043,"extensionData":{"number":133058,"startTime":195754835365,"elapsed":29996,"build":4800,"raster":12570,"vsyncOverhead":10906}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943043,"extensionData":{"number":133059,"startTime":195754863643,"elapsed":22768,"build":2913,"raster":12947,"vsyncOverhead":5830}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943043,"extensionData":{"number":133060,"startTime":195754879000,"elapsed":28167,"build":3241,"raster":18843,"vsyncOverhead":4524}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943043,"extensionData":{"number":133061,"startTime":195754897800,"elapsed":27536,"build":3599,"raster":14703,"vsyncOverhead":6675}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943043,"extensionData":{"number":133062,"startTime":195754914270,"elapsed":23628,"build":2580,"raster":11576,"vsyncOverhead":6489}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943043,"extensionData":{"number":133063,"startTime":195754931477,"elapsed":26741,"build":2591,"raster":16342,"vsyncOverhead":7044}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943043,"extensionData":{"number":133064,"startTime":195754948014,"elapsed":24005,"build":2896,"raster":13028,"vsyncOverhead":6908}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943175,"extensionData":{"number":133065,"startTime":195754964091,"elapsed":29288,"build":3193,"raster":18847,"vsyncOverhead":6326}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943175,"extensionData":{"number":133066,"startTime":195754980167,"elapsed":31701,"build":3985,"raster":17236,"vsyncOverhead":5730}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943175,"extensionData":{"number":133067,"startTime":195754997230,"elapsed":34293,"build":3050,"raster":17919,"vsyncOverhead":6120}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943175,"extensionData":{"number":133068,"startTime":195755014372,"elapsed":32900,"build":3129,"raster":14317,"vsyncOverhead":6592}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943175,"extensionData":{"number":133069,"startTime":195755028577,"elapsed":29228,"build":3096,"raster":12369,"vsyncOverhead":4131}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943175,"extensionData":{"number":133070,"startTime":195755046595,"elapsed":25683,"build":2426,"raster":12565,"vsyncOverhead":5487}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943175,"extensionData":{"number":133071,"startTime":195755062725,"elapsed":23668,"build":3181,"raster":13364,"vsyncOverhead":4943}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943175,"extensionData":{"number":133072,"startTime":195755082500,"elapsed":23295,"build":2825,"raster":11466,"vsyncOverhead":8052}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943309,"extensionData":{"number":133073,"startTime":195755098630,"elapsed":35728,"build":2763,"raster":24692,"vsyncOverhead":7518}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943309,"extensionData":{"number":133074,"startTime":195755120993,"elapsed":34989,"build":3112,"raster":14626,"vsyncOverhead":13193}}}} [9:32:24 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943309,"extensionData":{"number":133075,"startTime":195755211993,"elapsed":21785,"build":2569,"raster":13689,"vsyncOverhead":4173}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943445,"extensionData":{"number":133076,"startTime":195755228400,"elapsed":39656,"build":4321,"raster":30387,"vsyncOverhead":3928}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943445,"extensionData":{"number":133077,"startTime":195755249114,"elapsed":45374,"build":3420,"raster":19086,"vsyncOverhead":7970}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943445,"extensionData":{"number":133078,"startTime":195755278361,"elapsed":35885,"build":4210,"raster":21845,"vsyncOverhead":3869}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943445,"extensionData":{"number":133079,"startTime":195755297424,"elapsed":42564,"build":5313,"raster":21439,"vsyncOverhead":6282}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943445,"extensionData":{"number":133080,"startTime":195755312596,"elapsed":46683,"build":3736,"raster":19786,"vsyncOverhead":4778}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943445,"extensionData":{"number":133081,"startTime":195755352589,"elapsed":45819,"build":4794,"raster":12229,"vsyncOverhead":28114}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943626,"extensionData":{"number":133082,"startTime":195755378204,"elapsed":21596,"build":3990,"raster":12056,"vsyncOverhead":3707}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943626,"extensionData":{"number":133083,"startTime":195755396197,"elapsed":22715,"build":3122,"raster":13521,"vsyncOverhead":5049}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943626,"extensionData":{"number":133084,"startTime":195755414021,"elapsed":21390,"build":2773,"raster":11341,"vsyncOverhead":6212}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943626,"extensionData":{"number":133085,"startTime":195755428180,"elapsed":22192,"build":2627,"raster":14968,"vsyncOverhead":3698}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943626,"extensionData":{"number":133086,"startTime":195755445104,"elapsed":22837,"build":3327,"raster":14136,"vsyncOverhead":3955}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943626,"extensionData":{"number":133087,"startTime":195755462844,"elapsed":26340,"build":6849,"raster":13587,"vsyncOverhead":5024}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943626,"extensionData":{"number":133088,"startTime":195755477526,"elapsed":22847,"build":4797,"raster":12209,"vsyncOverhead":3033}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943698,"extensionData":{"number":133089,"startTime":195755494848,"elapsed":22174,"build":3309,"raster":14246,"vsyncOverhead":3689}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943699,"extensionData":{"number":133090,"startTime":195755556043,"elapsed":67933,"build":3956,"raster":12654,"vsyncOverhead":48221}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943699,"extensionData":{"number":133091,"startTime":195755581778,"elapsed":35145,"build":3350,"raster":16390,"vsyncOverhead":7274}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943699,"extensionData":{"number":133092,"startTime":195755595708,"elapsed":33098,"build":2959,"raster":11316,"vsyncOverhead":4545}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943823,"extensionData":{"number":133093,"startTime":195755614118,"elapsed":33665,"build":3008,"raster":16655,"vsyncOverhead":6288}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943823,"extensionData":{"number":133094,"startTime":195755631158,"elapsed":30859,"build":3580,"raster":12735,"vsyncOverhead":6655}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943823,"extensionData":{"number":133095,"startTime":195755647027,"elapsed":28009,"build":2409,"raster":13234,"vsyncOverhead":5856}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943823,"extensionData":{"number":133096,"startTime":195755663290,"elapsed":22092,"build":2525,"raster":10278,"vsyncOverhead":5447}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943824,"extensionData":{"number":133097,"startTime":195755679967,"elapsed":21323,"build":2916,"raster":12009,"vsyncOverhead":5458}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943824,"extensionData":{"number":133098,"startTime":195755695951,"elapsed":22457,"build":2652,"raster":13611,"vsyncOverhead":4765}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943824,"extensionData":{"number":133099,"startTime":195755713724,"elapsed":22928,"build":2153,"raster":13451,"vsyncOverhead":5884}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943824,"extensionData":{"number":133100,"startTime":195755730302,"elapsed":21875,"build":2920,"raster":12248,"vsyncOverhead":5812}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943940,"extensionData":{"number":133101,"startTime":195755746137,"elapsed":22795,"build":2412,"raster":13764,"vsyncOverhead":4971}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943942,"extensionData":{"number":133102,"startTime":195755763766,"elapsed":21379,"build":3251,"raster":11007,"vsyncOverhead":5933}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943942,"extensionData":{"number":133103,"startTime":195755780101,"elapsed":21826,"build":2567,"raster":12974,"vsyncOverhead":5602}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943942,"extensionData":{"number":133104,"startTime":195755797118,"elapsed":22182,"build":3141,"raster":10838,"vsyncOverhead":5943}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943942,"extensionData":{"number":133105,"startTime":195755812472,"elapsed":22068,"build":3304,"raster":12695,"vsyncOverhead":4626}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943942,"extensionData":{"number":133106,"startTime":195755829336,"elapsed":21206,"build":2533,"raster":13145,"vsyncOverhead":4824}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951943942,"extensionData":{"number":133107,"startTime":195755845657,"elapsed":21075,"build":3268,"raster":12061,"vsyncOverhead":4471}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944075,"extensionData":{"number":133108,"startTime":195755862041,"elapsed":25473,"build":3681,"raster":16293,"vsyncOverhead":4184}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944076,"extensionData":{"number":133109,"startTime":195755879326,"elapsed":21487,"build":2769,"raster":11282,"vsyncOverhead":4796}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944076,"extensionData":{"number":133110,"startTime":195755895600,"elapsed":23119,"build":3269,"raster":14132,"vsyncOverhead":4395}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944076,"extensionData":{"number":133111,"startTime":195755912949,"elapsed":22172,"build":3840,"raster":12464,"vsyncOverhead":5087}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944076,"extensionData":{"number":133112,"startTime":195755929825,"elapsed":24824,"build":2818,"raster":15182,"vsyncOverhead":5299}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944077,"extensionData":{"number":133113,"startTime":195755948496,"elapsed":25672,"build":3744,"raster":12625,"vsyncOverhead":7310}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944077,"extensionData":{"number":133114,"startTime":195755963759,"elapsed":21152,"build":3308,"raster":10473,"vsyncOverhead":5910}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944077,"extensionData":{"number":133115,"startTime":195755979147,"elapsed":21964,"build":2923,"raster":13477,"vsyncOverhead":4625}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944230,"extensionData":{"number":133116,"startTime":195755995699,"elapsed":33725,"build":2547,"raster":25915,"vsyncOverhead":4500}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944230,"extensionData":{"number":133117,"startTime":195756014532,"elapsed":34962,"build":4645,"raster":14817,"vsyncOverhead":6671}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944230,"extensionData":{"number":133118,"startTime":195756029822,"elapsed":31293,"build":2717,"raster":11543,"vsyncOverhead":5310}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944230,"extensionData":{"number":133119,"startTime":195756045062,"elapsed":34141,"build":3070,"raster":18941,"vsyncOverhead":3872}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944230,"extensionData":{"number":133120,"startTime":195756063511,"elapsed":35390,"build":6454,"raster":16598,"vsyncOverhead":5651}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944230,"extensionData":{"number":133121,"startTime":195756081263,"elapsed":35616,"build":7068,"raster":13775,"vsyncOverhead":6736}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944230,"extensionData":{"number":133122,"startTime":195756096313,"elapsed":42156,"build":4908,"raster":19866,"vsyncOverhead":5120}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944230,"extensionData":{"number":133123,"startTime":195756113842,"elapsed":45809,"build":5112,"raster":19688,"vsyncOverhead":5982}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944370,"extensionData":{"number":133124,"startTime":195756147309,"elapsed":33433,"build":5889,"raster":18790,"vsyncOverhead":6097}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944371,"extensionData":{"number":133125,"startTime":195756180051,"elapsed":27685,"build":4020,"raster":15784,"vsyncOverhead":5503}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944371,"extensionData":{"number":133126,"startTime":195756195050,"elapsed":26589,"build":3460,"raster":14516,"vsyncOverhead":3837}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944371,"extensionData":{"number":133127,"startTime":195756212278,"elapsed":30171,"build":3558,"raster":18244,"vsyncOverhead":4389}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944371,"extensionData":{"number":133128,"startTime":195756230103,"elapsed":33142,"build":4053,"raster":18237,"vsyncOverhead":5542}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944371,"extensionData":{"number":133129,"startTime":195756247618,"elapsed":32673,"build":3922,"raster":15338,"vsyncOverhead":6395}}}} [9:32:25 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944371,"extensionData":{"number":133130,"startTime":195756263537,"elapsed":35676,"build":3559,"raster":18037,"vsyncOverhead":5658}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944489,"extensionData":{"number":133131,"startTime":195756278484,"elapsed":39092,"build":4288,"raster":18594,"vsyncOverhead":3923}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944489,"extensionData":{"number":133132,"startTime":195756299259,"elapsed":38837,"build":3590,"raster":15221,"vsyncOverhead":8032}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944489,"extensionData":{"number":133133,"startTime":195756330046,"elapsed":22823,"build":4183,"raster":12061,"vsyncOverhead":5492}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944489,"extensionData":{"number":133134,"startTime":195756346587,"elapsed":21616,"build":3214,"raster":11851,"vsyncOverhead":5368}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944489,"extensionData":{"number":133135,"startTime":195756363927,"elapsed":22231,"build":3399,"raster":12042,"vsyncOverhead":6037}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944489,"extensionData":{"number":133136,"startTime":195756379809,"elapsed":23336,"build":2573,"raster":14720,"vsyncOverhead":5242}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944489,"extensionData":{"number":133137,"startTime":195756397474,"elapsed":20846,"build":3106,"raster":10269,"vsyncOverhead":6257}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944625,"extensionData":{"number":133138,"startTime":195756412009,"elapsed":28024,"build":2807,"raster":20335,"vsyncOverhead":4117}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944625,"extensionData":{"number":133139,"startTime":195756428030,"elapsed":26548,"build":4743,"raster":14139,"vsyncOverhead":3468}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944625,"extensionData":{"number":133140,"startTime":195756445729,"elapsed":22508,"build":3262,"raster":11966,"vsyncOverhead":4501}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944625,"extensionData":{"number":133141,"startTime":195756465667,"elapsed":23834,"build":3756,"raster":10770,"vsyncOverhead":7781}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944625,"extensionData":{"number":133142,"startTime":195756480477,"elapsed":20732,"build":3347,"raster":10554,"vsyncOverhead":5936}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944625,"extensionData":{"number":133143,"startTime":195756495592,"elapsed":22741,"build":3306,"raster":14022,"vsyncOverhead":4372}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944625,"extensionData":{"number":133144,"startTime":195756513961,"elapsed":22353,"build":2389,"raster":12789,"vsyncOverhead":6082}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944625,"extensionData":{"number":133145,"startTime":195756530600,"elapsed":23814,"build":3228,"raster":12894,"vsyncOverhead":6065}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944759,"extensionData":{"number":133146,"startTime":195756548317,"elapsed":29994,"build":2443,"raster":19146,"vsyncOverhead":7137}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944759,"extensionData":{"number":133147,"startTime":195756563961,"elapsed":28817,"build":2566,"raster":14685,"vsyncOverhead":6107}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944759,"extensionData":{"number":133148,"startTime":195756580837,"elapsed":28002,"build":2906,"raster":12961,"vsyncOverhead":6316}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944759,"extensionData":{"number":133149,"startTime":195756598146,"elapsed":22423,"build":3822,"raster":10352,"vsyncOverhead":6946}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944759,"extensionData":{"number":133150,"startTime":195756612656,"elapsed":22130,"build":3195,"raster":13383,"vsyncOverhead":4795}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944759,"extensionData":{"number":133151,"startTime":195756629569,"elapsed":21893,"build":2621,"raster":13402,"vsyncOverhead":5038}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944759,"extensionData":{"number":133152,"startTime":195756646540,"elapsed":21661,"build":2604,"raster":12606,"vsyncOverhead":5348}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944759,"extensionData":{"number":133153,"startTime":195756660917,"elapsed":23066,"build":4743,"raster":13905,"vsyncOverhead":3049}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944892,"extensionData":{"number":133154,"startTime":195756680109,"elapsed":30979,"build":3862,"raster":20179,"vsyncOverhead":5571}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944893,"extensionData":{"number":133155,"startTime":195756695168,"elapsed":27272,"build":4519,"raster":11726,"vsyncOverhead":3960}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944896,"extensionData":{"number":133156,"startTime":195756712142,"elapsed":22664,"build":2602,"raster":11147,"vsyncOverhead":4258}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944896,"extensionData":{"number":133157,"startTime":195756732530,"elapsed":23549,"build":2300,"raster":12409,"vsyncOverhead":7992}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944896,"extensionData":{"number":133158,"startTime":195756746987,"elapsed":21315,"build":2670,"raster":12065,"vsyncOverhead":5800}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944896,"extensionData":{"number":133159,"startTime":195756763147,"elapsed":21459,"build":2334,"raster":12206,"vsyncOverhead":5285}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944896,"extensionData":{"number":133160,"startTime":195756780996,"elapsed":23347,"build":3629,"raster":12126,"vsyncOverhead":6463}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951944896,"extensionData":{"number":133161,"startTime":195756795168,"elapsed":22563,"build":6679,"raster":11079,"vsyncOverhead":3972}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945029,"extensionData":{"number":133162,"startTime":195756813096,"elapsed":32753,"build":2940,"raster":22784,"vsyncOverhead":5226}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945029,"extensionData":{"number":133163,"startTime":195756833026,"elapsed":30540,"build":2484,"raster":13486,"vsyncOverhead":8481}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945029,"extensionData":{"number":133164,"startTime":195756846364,"elapsed":27290,"build":2393,"raster":12896,"vsyncOverhead":5139}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945029,"extensionData":{"number":133165,"startTime":195756865492,"elapsed":26572,"build":2485,"raster":15163,"vsyncOverhead":7606}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945029,"extensionData":{"number":133166,"startTime":195756882029,"elapsed":26826,"build":3320,"raster":15076,"vsyncOverhead":7473}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945030,"extensionData":{"number":133167,"startTime":195756898041,"elapsed":31261,"build":3757,"raster":19318,"vsyncOverhead":6821}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945030,"extensionData":{"number":133168,"startTime":195756915374,"elapsed":30522,"build":2394,"raster":14983,"vsyncOverhead":7495}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945030,"extensionData":{"number":133169,"startTime":195756931552,"elapsed":28567,"build":3617,"raster":12722,"vsyncOverhead":6999}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Debug","event":{"type":"Event","kind":"Inspect","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945049,"inspectee":{"type":"@Instance","class":{"type":"@Class","fixedId":true,"id":"classes\/3972","name":"RenderParagraph"},"kind":"PlainInstance","id":"objects\/194"}}}} [9:32:26 PM] [FlutterRun] [Info] [Flutter] ==> [{"id":"86","method":"app.callServiceExtension","params":{"appId":"b04db69d-20bf-4780-8dfb-293ef4aed888","methodName":"ext.flutter.inspector.getSelectedSummaryWidget","params":{"previousSelectionId":null,"objectGroup":"my-group"}}}] [9:32:26 PM] [FlutterRun] [Info] [Flutter] <== [{"id":"86","result":{"result":null,"type":"_extensionType","method":"ext.flutter.inspector.getSelectedSummaryWidget"}}] [9:32:26 PM] [VmService] [Info] [Flutter] ==> {"id":"32524","jsonrpc":"2.0","method":"invoke","params":{"argumentIds":[],"disableBreakpoints":true,"isolateId":"isolates/1914565772250643","selector":"toString","targetId":"objects/194"}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0", "result":{"type":"@Instance","_vmType":"String","class":{"type":"@Class","fixedId":true,"id":"classes\/81","name":"_OneByteString","_vmName":"_OneByteString@0150898"},"kind":"String","id":"objects\/195","length":42,"valueAsString":"RenderParagraph#3ee54 relayoutBoundary=up1"},"id":"32524"} [9:32:26 PM] [FlutterRun] [Info] [Flutter] ==> [{"id":"87","method":"app.callServiceExtension","params":{"appId":"b04db69d-20bf-4780-8dfb-293ef4aed888","methodName":"ext.flutter.inspector.disposeGroup","params":{"objectGroup":"my-group"}}}] [9:32:26 PM] [FlutterRun] [Info] [Flutter] <== [{"id":"87","result":{"result":null,"type":"_extensionType","method":"ext.flutter.inspector.disposeGroup"}}] [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945162,"extensionData":{"number":133170,"startTime":195756947040,"elapsed":33606,"build":2967,"raster":20488,"vsyncOverhead":5816}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945163,"extensionData":{"number":133171,"startTime":195756967856,"elapsed":39766,"build":3928,"raster":20998,"vsyncOverhead":9965}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945163,"extensionData":{"number":133172,"startTime":195756997077,"elapsed":43235,"build":12181,"raster":21890,"vsyncOverhead":5849}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945163,"extensionData":{"number":133173,"startTime":195757031335,"elapsed":28155,"build":4402,"raster":16362,"vsyncOverhead":6744}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945163,"extensionData":{"number":133174,"startTime":195757047844,"elapsed":24900,"build":2744,"raster":12322,"vsyncOverhead":6587}}}} [9:32:26 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945163,"extensionData":{"number":133175,"startTime":195757064883,"elapsed":28269,"build":3159,"raster":16420,"vsyncOverhead":6973}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945293,"extensionData":{"number":133176,"startTime":195757083224,"elapsed":33427,"build":4368,"raster":18661,"vsyncOverhead":8648}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945293,"extensionData":{"number":133177,"startTime":195757113279,"elapsed":21588,"build":2761,"raster":12120,"vsyncOverhead":5366}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945293,"extensionData":{"number":133178,"startTime":195757131594,"elapsed":28578,"build":4408,"raster":15907,"vsyncOverhead":7010}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945503,"extensionData":{"number":133179,"startTime":195757217746,"elapsed":139328,"build":2446,"raster":58929,"vsyncOverhead":76509}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945504,"extensionData":{"number":133180,"startTime":195757246116,"elapsed":57848,"build":10868,"raster":16974,"vsyncOverhead":4915}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945504,"extensionData":{"number":133181,"startTime":195757297132,"elapsed":25110,"build":2645,"raster":14658,"vsyncOverhead":5948}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945504,"extensionData":{"number":133182,"startTime":195757332573,"elapsed":46030,"build":2366,"raster":32729,"vsyncOverhead":8082}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945504,"extensionData":{"number":133183,"startTime":195757366718,"elapsed":37874,"build":2953,"raster":23042,"vsyncOverhead":8889}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945608,"extensionData":{"number":133184,"startTime":195757396822,"elapsed":32470,"build":4640,"raster":21160,"vsyncOverhead":5651}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945609,"extensionData":{"number":133185,"startTime":195757433009,"elapsed":47798,"build":3179,"raster":17899,"vsyncOverhead":25193}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945609,"extensionData":{"number":133186,"startTime":195757449747,"elapsed":31707,"build":3201,"raster":15513,"vsyncOverhead":8578}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945609,"extensionData":{"number":133187,"startTime":195757463095,"elapsed":31296,"build":2315,"raster":15647,"vsyncOverhead":5245}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945609,"extensionData":{"number":133188,"startTime":195757484557,"elapsed":32583,"build":4348,"raster":16148,"vsyncOverhead":10037}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945609,"extensionData":{"number":133189,"startTime":195757514342,"elapsed":23905,"build":3162,"raster":12213,"vsyncOverhead":6510}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945726,"extensionData":{"number":133190,"startTime":195757529127,"elapsed":23491,"build":3410,"raster":13599,"vsyncOverhead":4619}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945728,"extensionData":{"number":133191,"startTime":195757549344,"elapsed":24951,"build":2309,"raster":13304,"vsyncOverhead":8161}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945728,"extensionData":{"number":133192,"startTime":195757567914,"elapsed":30121,"build":2479,"raster":14539,"vsyncOverhead":10082}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945728,"extensionData":{"number":133193,"startTime":195757584809,"elapsed":27972,"build":2643,"raster":13289,"vsyncOverhead":10301}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945728,"extensionData":{"number":133194,"startTime":195757598614,"elapsed":22975,"build":3284,"raster":10948,"vsyncOverhead":7434}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945728,"extensionData":{"number":133195,"startTime":195757614443,"elapsed":20959,"build":2726,"raster":10593,"vsyncOverhead":6614}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945728,"extensionData":{"number":133196,"startTime":195757629350,"elapsed":22518,"build":3099,"raster":13604,"vsyncOverhead":4845}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945845,"extensionData":{"number":133197,"startTime":195757647464,"elapsed":27166,"build":2390,"raster":16299,"vsyncOverhead":6303}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945845,"extensionData":{"number":133198,"startTime":195757669388,"elapsed":28586,"build":2699,"raster":12984,"vsyncOverhead":11556}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945845,"extensionData":{"number":133199,"startTime":195757682445,"elapsed":28671,"build":6427,"raster":12778,"vsyncOverhead":7952}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945846,"extensionData":{"number":133200,"startTime":195757697143,"elapsed":24144,"build":2284,"raster":11616,"vsyncOverhead":5979}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945846,"extensionData":{"number":133201,"startTime":195757716528,"elapsed":24763,"build":2412,"raster":12389,"vsyncOverhead":8716}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945846,"extensionData":{"number":133202,"startTime":195757731460,"elapsed":23063,"build":2673,"raster":12056,"vsyncOverhead":6981}}}} [9:32:27 PM] [VmService] [Info] [Flutter] <== {"jsonrpc":"2.0","method":"streamNotify","params":{"streamId":"Extension","event":{"type":"Event","kind":"Extension","extensionKind":"Flutter.Frame","isolate":{"type":"@Isolate","id":"isolates\/1914565772250643","name":"main","number":"1914565772250643","isSystemIsolate":false},"timestamp":1615951945846,"extensionData":{"number":133203,"startTime":195757749180,"elapsed":24652,"build":2512,"raster":13271,"vsyncOverhead":8047}}}} Tue Mar 16 2021 [21:32:27 GMT-0600 (Mountain Daylight Time)] Log file ended ```
quyenvsp commented 2 years ago

@DanTup

Hi,

I got same problem on my project. emulator working fine, only happen with real Android device (my Samsung A9 pro Android 8.0) got message <inspected variable> when use inspector instead of open file in VS code.

So I tried comment each block code in my main.dart and found it because of this line:

FirebaseMessaging.onBackgroundMessage(_firebaseMessagingBackgroundHandler);

Just comment above line then it working normal on my real device.

Find more detail on what that line do, I found maybe because isolate or something make ext.flutter.inspector.getSelectedSummaryWidget return null

Final result is if comment line below then it work

c:\src\flutter-2.10\.pub-cache\hosted\pub.dartlang.org\firebase_messaging-11.2.4\android\src\main\java\io\flutter\plugins\firebase\messaging\FlutterFirebaseMessagingBackgroundExecutor.java:183

executor.executeDartCallback(dartCallback);

I have repo here https://github.com/noncheat/flutter_helloworld

You can try debug it on real Android device and see.

Hope it helpful.

DanTup commented 2 years ago

@jacob314 I can repro this using @quyenvsp's instructions above. I don't think it's VS Code related, but I'm not sure where the problem is.

When I run the app without the call to FirebaseMessaging.onBackgroundMessage, we get the inspect event fine and call getSelectedSummaryWidget and get a reasonable response:

[FlutterRun] [Info] [flutter_helloworld] ==> [{"id":"1","method":"app.callServiceExtension","params":{"appId":"a856a8fd-efba-45a4-b6b0-db7b1ff8c127","methodName":"ext.flutter.inspector.getSelectedSummaryWidget","params":{"previousSelectionId":null,"objectGroup":"my-group"}}}]
[FlutterRun] [Info] [flutter_helloworld] <== [{"id":"1","result":{"result":{"description":"Text","type":"_ElementDiagnosticableTreeNode","style":"dense","hasChildren":true,"allowWrap":false,"objectId":"inspector-1034","valueId":"inspector-21","locationId":10,"creationLocation":{"file":"file:///Users/danny/Dev/TestStuff/flutter_helloworld/lib/main.dart","line":100,"column":16,"name":"Text"},"createdByLocalProject":true,"children":[{"description":"RichText","type":"_ElementDiagnosticableTreeNode","style":"dense","allowWrap":false,"objectId":"inspector-1035","valueId":"inspector-47","locationId":13,"creationLocation":{"file":"file:///Users/danny/Dev/Google/flutter/packages/flutter/lib/src/widgets/text.dart","line":527,"column":21,"name":"RichText"},"children":[],"widgetRuntimeType":"RichText","stateful":false}],"widgetRuntimeType":"Text","stateful":false},"type":"_extensionType","method":"ext.flutter.inspector.getSelectedSummaryWidget"}}]

However, when I add back FirebaseMessaging.onBackgroundMessage then the response is null:

[FlutterRun] [Info] [flutter_helloworld] ==> [{"id":"9","method":"app.callServiceExtension","params":{"appId":"f08cfbc4-5a20-42a0-8295-38931b9eccc1","methodName":"ext.flutter.inspector.getSelectedSummaryWidget","params":{"previousSelectionId":null,"objectGroup":"my-group"}}}]
[FlutterRun] [Info] [flutter_helloworld] <== [{"id":"9","result":{"result":null,"type":"_extensionType","method":"ext.flutter.inspector.getSelectedSummaryWidget"}}]

Any thoughts on whether this is likely an Inspector issue or a Firebase issue?

vaibhav891 commented 2 years ago

Even I am facing this issue. However for me, restarting the debug session seems to solve the issue. But it is really frustrating to keep restarting debug session again & again. Any updates on this?

iamfirdous commented 1 year ago

Any update on this issue? I've been facing the same issue.

Sudhanshhu commented 1 year ago

Any Updates ??

DanTup commented 1 year ago

My understanding of the original issue is that when the Firebase initialisation was performed, the inspector would no longer navigate to the code in the editor, and would output "". The first part was the cause of the second part (that is, if an inspect() call fails to find a selected widget, it will assume user code called inspect() and print it to the debug console).

Testing this today using the new SDK debug adapters (which are being rolled out gradually), the navigation works even with the Firebase initialization. Whatever was causing the inspector navigation to fail previously appears to be fixed. You can opt-in to the new debug adapters early with the dart.previewSdkDaps setting in VS Code.

So, I believe the outstanding issue (at least when using the new debug adapters) is that "" is also printed to the debug console. This happens because the inspector is currently using both the new mechanism (ToolEvent) and old mechanism (inspect()) for handling inspection (for compatibility with IntelliJ and the legacy VS Code debug adapter), and we can't tell the difference between an inspect() from user-code or from the inspector.

The ideal fix for this would be to remove the inspect() call here:

https://github.com/flutter/flutter/blob/110c8a41c0945f9aa458f510b6bc8b1e88226fac/packages/flutter/lib/src/widgets/widget_inspector.dart#L1584

But doing that would either need to be conditional on knowing the client editor is handling the new ToolEvent, or that we know all editors have been handling it for sufficient time that we're not concerned with older versions of the plugins.

@CoderDake do you know of any way we could provide some signal to the inspector that the client is able to handle ToolEvent and the inspect() call could be skipped?

jacob314 commented 1 year ago

We should remove the call to inspect at L1584 and dispatch a custom event notifying the Flutter Inspector that the inspector selection has changed. I don't see anything blocking us from making that change. The inspector doesn't even need to know the object selected as it can query the inspector to determine that.

DanTup commented 1 year ago

We should remove the call to inspect at L1584 and dispatch a custom event notifying the Flutter Inspector that the inspector selection has changed.

By "Inspector" here, do you mean IntelliJ? I assumed that IntelliJ was listening for that inspect() call to navigate code as VS Code was? (Edit: didn't realise the inspector uses this for selection too... @CoderDake is this easy to change?)

I will update the legacy VS Code DAP to handle the new ToolEvent stream so that the rollout of the new DAPs isn't a factor in removing this. Done!