report static method

void report()

In thống kê đơn giản ra console

Implementation

static void report() {
  print('--- Performance Report ---');
  print('Reactive notify calls: $reactiveNotifyCount');
  print('Observer build calls: $observerBuildCount');
  if (reactiveNotifyCount > 0) {
    final avgTime = totalNotifyTimeMicroseconds / reactiveNotifyCount;
    print('Average notify time: ${avgTime.toStringAsFixed(2)} microseconds');
  }
  print('---------------------------');
}