ToolParseRequest constructor
ToolParseRequest({
- String? text,
- 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;
}