WorldStatsSnapshot constructor

const WorldStatsSnapshot({
  1. required EntityStatsSnapshot entities,
  2. required ArchetypeStatsSnapshot archetypes,
  3. required Map<String, SystemStatsSnapshot> systems,
  4. required int frameCount,
  5. required Duration worldTime,
})

Implementation

const WorldStatsSnapshot({
  required this.entities,
  required this.archetypes,
  required this.systems,
  required this.frameCount,
  required this.worldTime,
});