CachedToolSchema constructor

const CachedToolSchema({
  1. required String name,
  2. String? description,
  3. Map<String, dynamic>? inputSchema,
  4. bool? strict,
  5. bool? eagerInputStreaming,
})

Implementation

const CachedToolSchema({
  required this.name,
  this.description,
  this.inputSchema,
  this.strict,
  this.eagerInputStreaming,
});