PromptCommand constructor

const PromptCommand({
  1. required String content,
  2. int? maxContentLength,
  3. List<String>? allowedTools,
  4. String? model,
  5. String? source,
  6. String? pluginName,
  7. bool fork = false,
})

Implementation

const PromptCommand({
  required this.content,
  this.maxContentLength,
  this.allowedTools,
  this.model,
  this.source,
  this.pluginName,
  this.fork = false,
});