CommandsToRunResult constructor

const CommandsToRunResult({
  1. required List<CommandToRun> commands,
  2. required bool bail,
  3. required EnvConfig? combinedEnvConfig,
})

Implementation

const CommandsToRunResult({
  required List<CommandToRun> this.commands,
  required this.bail,
  required this.combinedEnvConfig,
}) : exitCode = null;