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