ConfigParser constructor
ConfigParser({})
Creates a new ConfigParser instance.
Parameters:
tasks- The list of tasks defined in the configurationarguments- The map of job arguments defined in the configurationenvironments- The environment variables used in the configurationglobalResults- Global command line argument resultsoutput- The output directory for distribution files (defaults to "distribution")
Implementation
ConfigParser({
required this.tasks,
required this.arguments,
required this.environments,
required this.globalResults,
this.output = "distribution",
});