snapshot method
Implementation
SystemStatsSnapshot snapshot() {
return SystemStatsSnapshot(
name: name,
callCount: _callCount,
totalEntitiesProcessed: _totalEntitiesProcessed,
totalTime: _totalTime,
minTime: _minTime == Duration(days: 365) ? Duration.zero : _minTime,
maxTime: _maxTime,
);
}