Good afternoon, I'm having a situation where I've imported a library called Utilities, which only contains Custom Actions and Functions. The issue is that if I want to reference any customAction or customFunction from my imported library within a Custom Action in my project, I cannot do it.
using Library imported custom functions in project custom functions
I've tried downloading the project code, and indeed, the libraries are added in the pubspec.yaml, and even if I try to add it within the pubspec dependencies in a custom action of my project, I get an error saying that FlutterFlow adds them automatically and it's recommended to remove them. However, I still keep getting the method not found error, because within FlutterFlow's automatic imports in my project's custom actions, it's not making any reference to the functions or actions from my imported library.
I also tried to import the exact file where the library functions are located (with an import: package:"my library name..."), and within my IDE (in this case Visual Studio Code), I can run the program, but during compilation and error checking in my project's custom action, it shows an unknown error (I mean, I know this definitely isn't the correct way to do it, since if I update the library versions, I shouldn't need to update that new import in every custom action that uses them).