totalCount property

int get totalCount

Total number of samples across all buckets.

Implementation

int get totalCount => buckets.fold<int>(0, (sum, bin) => sum + bin.count);