AiZoneConfig constructor

AiZoneConfig({
  1. required String id,
  2. String? description,
  3. bool allowSimplify = false,
  4. bool allowGuide = false,
  5. bool allowHighlight = true,
  6. bool allowInjectBlock = false,
  7. bool allowInjectCard = false,
  8. bool interventionEligible = false,
  9. bool proactiveIntervention = false,
  10. List<BlockDefinition> blocks = const [],
})

Implementation

AiZoneConfig({
  required this.id,
  this.description,
  this.allowSimplify = false,
  this.allowGuide = false,
  this.allowHighlight = true,
  this.allowInjectBlock = false,
  this.allowInjectCard = false,
  this.interventionEligible = false,
  this.proactiveIntervention = false,
  this.blocks = const [],
});