analyzeAsync method

Future analyzeAsync(
  1. dynamic files, {
  2. bool htmlReport = false,
})

Analyze the given file or files with DDC.

Implementation

Future analyzeAsync(dynamic files, {bool htmlReport = false}) {
  return _ddc.runAsync(_args(files, htmlReport: htmlReport));
}