ScriptEnv constructor

const ScriptEnv({
  1. List<String> files = const [],
  2. List<String> commands = const [],
  3. Map<String, String> vars = const {},
})

Implementation

const ScriptEnv({
  this.files = const [],
  this.commands = const [],
  this.vars = const {},
});