getDebugInfo static method

Map<String, dynamic> getDebugInfo()

DEBUG INFO Provides statistics about the registry

Implementation

static Map<String, dynamic> getDebugInfo() {
  return {
    'cached_skeletons': _skeletonCache.length,
    'registered_providers': _getProviders().length,
    'provider_types':
        _getProviders().map((p) => p.runtimeType.toString()).toList(),
  };
}