invokeInternal method
Actual implementation of invoke method logic with string input.
Implementation
@override
Future<String> invokeInternal(
final String toolInput, {
final ToolOptions? options,
}) async {
try {
return toolInput;
} catch (e) {
return "I don't know how to do that.";
}
}