printStatistics static method
void
printStatistics()
Prints debug statistics.
Implementation
static void printStatistics() {
if (!_enabled) {
debugPrint('[SkeletonDebug] Debug mode is disabled');
return;
}
final stats = statistics;
debugPrint('=== Skeleton Debug Statistics ===');
stats.forEach((key, value) {
debugPrint(' $key: $value');
});
debugPrint('================================');
}