tryToDetectMainRootInfo method

Future<RootInfo?> tryToDetectMainRootInfo()

Implementation

Future<RootInfo?> tryToDetectMainRootInfo() async {
  await isolateManager.mainIsolateState?.waitForIsolateLoad();
  return isolateManager.mainIsolateState?.rootInfo;
}