ClientToolConfigOutput constructor

const ClientToolConfigOutput({
  1. String? id,
  2. required String name,
  3. required String description,
  4. int? responseTimeoutSecs,
  5. String? type,
  6. dynamic parameters,
  7. bool? expectsResponse,
  8. DynamicVariablesConfig? dynamicVariables,
})

Implementation

const ClientToolConfigOutput({
  this.id,
  required this.name,
  required this.description,
  this.responseTimeoutSecs,
  this.type,
  this.parameters,
  this.expectsResponse,
  this.dynamicVariables,
});