ToolSchema constructor

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

Implementation

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