ToolSchema constructor

ToolSchema({
  1. String? $schema,
  2. Map<String, Object?>? properties,
  3. List<String>? required,
  4. String type = 'object',
  5. Map<String, Object?>? additionalData,
})

Implementation

ToolSchema({
  this.$schema,
  this.properties,
  this.required,
  this.type = 'object',
  this.additionalData,
});