ScriptArgument constructor

const ScriptArgument({
  1. required String projectType,
  2. required Directory projectDir,
  3. required File codeStyle,
  4. String? reporterType,
  5. File? reporterOutputFile,
  6. VcsArgument? vcs,
})

Implementation

const ScriptArgument({
  required this.projectType,
  required this.projectDir,
  required this.codeStyle,
  this.reporterType,
  this.reporterOutputFile,
  this.vcs,
});