outputPointCount static method

int outputPointCount(
  1. List<ProcessedSeries> processed
)

Implementation

static int outputPointCount(List<ProcessedSeries> processed) {
  var total = 0;
  for (final s in processed) {
    total += s.points.length;
  }
  return total;
}