BackgroundProcessTool constructor

BackgroundProcessTool(
  1. String executable,
  2. List<String> args, {
  3. ProcessStartMode? mode,
  4. Duration? delayAfterStart,
  5. String? workingDirectory,
})

Implementation

BackgroundProcessTool(String executable, List<String> args,
    {ProcessStartMode? mode,
    Duration? delayAfterStart,
    String? workingDirectory})
    : _args = args,
      _executable = executable,
      _mode = mode,
      _delayAfterStart = delayAfterStart,
      _workingDirectory = workingDirectory;