Get stats about reactive objects
Implementation
Map<String, int> get reactiveStats {
final stats = <String, int>{};
for (final reactive in _reactiveObjects) {
final type = reactive.runtimeType.toString();
stats[type] = (stats[type] ?? 0) + 1;
}
return stats;
}