BaseToolArgument constructor

BaseToolArgument({
  1. required String name,
  2. required ToolArgumentType type,
  3. required String description,
  4. bool isOptional = false,
  5. Map<String, dynamic>? constraints,
})

Implementation

BaseToolArgument({
  required this.name,
  required this.type,
  required this.description,
  this.isOptional = false,
  this.constraints,
});