EscapeGameObject constructor

const EscapeGameObject({
  1. required String id,
  2. required String name,
  3. RenderSettings? inventoryRenderSettings,
})

Creates a new EscapeGameObject instance.

Implementation

const EscapeGameObject({
  required this.id,
  required this.name,
  this.inventoryRenderSettings,
});