EntityPrefab constructor

EntityPrefab({
  1. required String name,
  2. required Set<Component> components,
})

Implementation

EntityPrefab({
  required this.name,
  required this.components,
});