flutter-idea/src/io/flutter/actions/OpenInXcodeAction.java [163:173]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void actionPerformed(@NotNull AnActionEvent event) {
    final VirtualFile projectFile = findProjectFile(event);
    if (projectFile != null) {
      openFile(projectFile);
    }
    else {
      @Nullable final Project project = event.getProject();

      FlutterMessages.showError("Error Opening Xcode", "Project not found.", project);
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flutter-idea/src/io/flutter/actions/OpenInAppCodeAction.java [77:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void actionPerformed(@NotNull AnActionEvent event) {
    final VirtualFile projectFile = findProjectFile(event);
    if (projectFile != null) {
      openFile(projectFile);
    }
    else {
      @Nullable final Project project = event.getProject();
      FlutterMessages.showError("Error Opening AppCode", "Project not found.", project);
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



