windowsRunnerPath top-level property
The path where the Flutter Windows application will be built.
This path is computed by joining the current directory with the directories 'build', 'windows', 'x64', and 'runner'.
Example: If the current directory is /Users/username/projects/my_app
,
then the windowsRunnerPath
will be
/Users/username/projects/my_app/build/windows/x64/runner
.
Implementation
final String windowsRunnerPath = join(
Directory.current.absolute.path,
'build',
'windows',
'x64',
'runner',
);