SystemToolConfigOutput constructor

const SystemToolConfigOutput({
  1. String? id,
  2. required String name,
  3. required String description,
  4. int? responseTimeoutSecs,
  5. String? type,
  6. required dynamic params,
})

Implementation

const SystemToolConfigOutput({
  this.id,
  required this.name,
  required this.description,
  this.responseTimeoutSecs,
  this.type,
  required this.params,
});