FunctionDeclaration constructor
FunctionDeclaration({
- required String name,
- required String description,
- Schema? parameters,
- Value? parametersJsonSchema,
- Schema? response,
- Value? responseJsonSchema,
- FunctionDeclaration_Behavior behavior = FunctionDeclaration_Behavior.$default,
Implementation
FunctionDeclaration({
required this.name,
required this.description,
this.parameters,
this.parametersJsonSchema,
this.response,
this.responseJsonSchema,
this.behavior = FunctionDeclaration_Behavior.$default,
}) : super(fullyQualifiedName);