KernelToolDef constructor

const KernelToolDef({
  1. required String name,
  2. required String description,
  3. required Map<String, dynamic> inputSchema,
  4. required ToolScope scope,
})

Implementation

const KernelToolDef({
  required this.name,
  required this.description,
  required this.inputSchema,
  required this.scope,
});