How to run embedding a command-line tool in a sandboxed app bundle?

I have sandboxed the Flutter application delivered to App Store. I put the binary CLI tool in executable copy files build phases

_currentProcess = await Process.start( CliToolPath );

What value should be in CliToolPath for running that CLI tool?
How to run embedding a command-line tool in a sandboxed app bundle?
 
 
Q