getAllStats method
Gets statistics for all drivers.
Implementation
@override
Map<String, CacheStats> getAllStats() {
final result = <String, CacheStats>{};
_stats.forEach((key, value) {
result[key] = value.copy();
});
return result;
}
Gets statistics for all drivers.
@override
Map<String, CacheStats> getAllStats() {
final result = <String, CacheStats>{};
_stats.forEach((key, value) {
result[key] = value.copy();
});
return result;
}