BashCommand constructor

BashCommand({
  1. required FutureOr<String> script(),
  2. required String description,
  3. required String name,
  4. Directory? workingDirectory,
  5. bool withStdIn = false,
})

Implementation

BashCommand({
  required this.script,
  required this.description,
  required this.name,
  this.workingDirectory,
  this.withStdIn = false,
});