GateOutcome constructor
GateOutcome({})
Implementation
GateOutcome({
required List<CommandRecord> commands,
required List<int> exitCodes,
required List<String> outputs,
required this.passed,
}) : commands = List.unmodifiable(commands),
exitCodes = List.unmodifiable(exitCodes),
outputs = List.unmodifiable(outputs);