AnalysisProgressCallback typedef
Progress callback for parallel analysis.
completed is the number of files processed.
total is the total number of files to process.
currentFile is the path of the file being processed.
Implementation
typedef AnalysisProgressCallback = void Function(
int completed,
int total,
String currentFile,
);