ParsedArguments constructor

const ParsedArguments({
  1. required String excludePath,
  2. required String rootFolder,
  3. required Map<String, Object> metricsConfig,
  4. required bool shouldPrintConfig,
  5. String? jsonReportPath,
})

Implementation

const ParsedArguments({
  required this.excludePath,
  required this.rootFolder,
  required this.metricsConfig,
  required this.shouldPrintConfig,
  this.jsonReportPath,
});