defaultPrintReport static method

void defaultPrintReport(
  1. int total,
  2. int completed,
  3. int inProgress,
  4. int pending,
  5. int failed,
)

The default report printing function, if one is not supplied.

Implementation

static void defaultPrintReport(
  int total,
  int completed,
  int inProgress,
  int pending,
  int failed,
) {
  stdout.write(defaultReportToString(total, completed, inProgress, pending, failed));
}