snapshot method

SystemStatsSnapshot snapshot()

Implementation

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