ProgressCallback typedef

ProgressCallback = void Function(int pass, int totalPass, int percentage)

Progress callback receives pass, totalPass and the progress percentage (%) on the pass.

Implementation

typedef ProgressCallback = void Function(
    int pass, int totalPass, int percentage);