PowerShellTool constructor

PowerShellTool({
  1. Duration defaultTimeout = const Duration(minutes: 2),
  2. String? defaultExecutionPolicy,
  3. String? workingDirectory,
  4. Map<String, String>? environment,
  5. bool enableSafetyChecks = true,
})

Implementation

PowerShellTool({
  this.defaultTimeout = const Duration(minutes: 2),
  this.defaultExecutionPolicy,
  this.workingDirectory,
  this.environment,
  this.enableSafetyChecks = true,
});