PowerShellInput constructor

const PowerShellInput({
  1. required String command,
  2. String? workDir,
  3. Duration timeout = const Duration(minutes: 2),
  4. String? executionPolicy,
})

Implementation

const PowerShellInput({
  required this.command,
  this.workDir,
  this.timeout = const Duration(minutes: 2),
  this.executionPolicy,
});