GenerateToolArgument constructor

const GenerateToolArgument({
  1. String? description,
  2. bool? isOptional,
  3. Map<String, dynamic>? constraints,
  4. bool exclude = false,
})

Implementation

const GenerateToolArgument({
  this.description,
  this.isOptional,
  this.constraints,
  this.exclude = false,
});