EntitySnapshot constructor

const EntitySnapshot({
  1. required int index,
  2. required int generation,
  3. required String? name,
  4. required List<String> componentTypes,
})

Implementation

const EntitySnapshot({
  required this.index,
  required this.generation,
  required this.name,
  required this.componentTypes,
});