snapshots property
List<LiveMetricSnapshot>
get
snapshots
Implementation
List<LiveMetricSnapshot> get snapshots {
final snapshots = _entries.values.map((entry) => entry.snapshot()).toList();
snapshots.sort((left, right) => left.key.compareTo(right.key));
return snapshots;
}