ToolParseRequest constructor

ToolParseRequest({
  1. String? text,
  2. ToolCallingOptions? options,
})

Implementation

factory ToolParseRequest({
  $core.String? text,
  ToolCallingOptions? options,
}) {
  final result = create();
  if (text != null) result.text = text;
  if (options != null) result.options = options;
  return result;
}