BashCommandException constructor

const BashCommandException({
  1. required String script,
  2. required String commandName,
  3. required List<String> arguments,
  4. required int exitCode,
  5. required StackTrace stack,
  6. required Object cause,
})

Implementation

const BashCommandException({
  required this.script,
  required this.commandName,
  required this.arguments,
  required this.exitCode,
  required this.stack,
  required this.cause,
});