StatsCache.fromMap constructor
Implementation
factory StatsCache.fromMap(Map<String, dynamic> map) {
return StatsCache(
uptime: map['uptime'],
clients: map['clients'],
hits: map['hits'],
misses: map['misses'],
memoryUsed: map['memoryUsed'],
memoryUsedHuman: map['memoryUsedHuman'],
memoryUsedPeak: map['memoryUsedPeak'],
memoryUsedPeakHuman: map['memoryUsedPeakHuman'],
);
}