run method

void run(
  1. List<String> args, {
  2. required Widget myApp,
})

Boots myApp via bootstrapMultiViewApp (Multiview on desktop, runApp elsewhere). Prefer this or Infospect.bootstrapMultiViewApp over plain runApp whenever Multiview native runners are wired.

  • args: Kept for API compatibility; unused with multiview_desktop (secondary windows share one isolate — no multi_window CLI args).
  • myApp: The main widget to run for the app.

Implementation

void run(List<String> args, {required Widget myApp}) =>
    _infospectNavigationHelper.run(args, myApp: myApp);