PerformanceInfo constructor

PerformanceInfo({
  1. required String query,
  2. required int serverTimeMs,
  3. required int clientTimeMs,
  4. required String shard,
  5. required int age,
})

Implementation

PerformanceInfo({
  required this.query,
  required this.serverTimeMs,
  required this.clientTimeMs,
  required this.shard,
  required this.age,
});