FunctionDeclaration constructor

FunctionDeclaration({
  1. required String name,
  2. String description = '',
  3. Schema? parameters,
  4. Value? parametersJsonSchema,
  5. Schema? response,
  6. Value? responseJsonSchema,
})

Implementation

FunctionDeclaration({
  required this.name,
  this.description = '',
  this.parameters,
  this.parametersJsonSchema,
  this.response,
  this.responseJsonSchema,
}) : super(fullyQualifiedName);