TSpawnable constructor

const TSpawnable(
  1. String name, {
  2. required String id,
  3. String? allowedTools,
  4. bool yolo = true,
  5. String? model,
  6. bool headless = true,
})

Implementation

const TSpawnable(
  String name, {
  required this.id,
  this.allowedTools,
  this.yolo = true,
  this.model,
  this.headless = true,
}) : super(
       name: name,
     );