run method
Initiates the app.
Delegates to bootstrapMultiViewApp so Multiview native runners always
get runMultiApp on desktop (even when hosts only call Infospect.run).
args: Kept for API compatibility; unused with multiview_desktop.myApp: The main widget to run for the app.
Implementation
void run(List<String> args, {required Widget myApp}) {
package_bootstrap.bootstrapMultiViewApp(myApp);
if (!_infospect._runAppCompleter.isCompleted) {
_infospect._runAppCompleter.complete(true);
}
}