I see that there is an option for file_extension which will associate files to the app but when running the app, how does flutter know what files are being opening? Can they be accessed in void main? In other words, if I run a .foo file that starts the app, how can I check what file or files are opening the app so that I can list them or check them first?
I see that there is an option for
file_extension
which will associate files to the app but when running the app, how does flutter know what files are being opening? Can they be accessed in void main? In other words, if I run a.foo
file that starts the app, how can I check what file or files are opening the app so that I can list them or check them first?