CommandsToRunResult constructor

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

Implementation

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