ReleasePackerWindowsSubsystemCommand constructor

ReleasePackerWindowsSubsystemCommand(
  1. bool gui,
  2. String executableFile,
  3. String outputFile
)

Implementation

ReleasePackerWindowsSubsystemCommand(
  bool gui,
  String executableFile,
  String outputFile,
) : super('release_utility', [
      gui ? '--windows-gui' : '--windows-console',
      executableFile,
      outputFile,
    ]);