getAllStats method

  1. @override
Map<String, CacheStats> getAllStats()
override

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;
}