I want to develop a PoC application in Flutter for Mac/OS X as a desktop app (Flutter Framework supports Mac Desktop apps, but I'm trying to figure out a key piece regarding a binary executable.
Basically, I want to be able to execute an OS X executable from within a Flutter app. I'm aware of using method channels for platform specific code, but I'm not sure if this applies to running an executable on that platform or not.
How can I package a platform (OS X) binary with my Flutter app? How can I perform executions of an (OS X) executable from Flutter, and receive the "results" (probably stdout logging) ?
Any help is appreciated, thanks!