ActionFunctionRegister constructor

ActionFunctionRegister({
  1. String functionId = '',
  2. String functionName = '',
  3. List<FunctionRegisterParameter> parameters = const [],
  4. String resultTypeName = '',
  5. bool isEnumerable = false,
  6. String enumerableItemTypeName = '',
  7. bool isCancellable = false,
  8. String description = '',
  9. bool llmInlineResult = false,
  10. bool llmCallOnlyOnce = false,
  11. bool requiresInstance = false,
  12. List<String> versions = const [],
})

Implementation

ActionFunctionRegister({
    this.functionId = '',
    this.functionName = '',
    this.parameters = const [],
    this.resultTypeName = '',
    this.isEnumerable = false,
    this.enumerableItemTypeName = '',
    this.isCancellable = false,
    this.description = '',
    this.llmInlineResult = false,
    this.llmCallOnlyOnce = false,
    this.requiresInstance = false,
    this.versions = const [],
});