We currently check for the presence of dart:html in the connected app to determine whether it is a web application.
https://github.com/flutter/devtools/blob/master/packages/devtools_app_shared/lib/src/service/connected_app.dart#L88-L89
We should make this an OR check with a package:web or dart:js_interop library. Leaving the dart:html condition we allow us to still support apps using dart:html (e.g. g3).
We currently check for the presence of
dart:htmlin the connected app to determine whether it is a web application.https://github.com/flutter/devtools/blob/master/packages/devtools_app_shared/lib/src/service/connected_app.dart#L88-L89
We should make this an OR check with a
package:webordart:js_interoplibrary. Leaving the dart:html condition we allow us to still support apps using dart:html (e.g. g3).