AskUserForFile constructor
AskUserForFile({
- required BuildContext context,
- String name = "ask_user_for_file",
- String description = "ask the user for a file (will be accessible as a blob url to other tools)",
- String title = "ask user for file",
Implementation
AskUserForFile({
required this.context,
super.name = "ask_user_for_file",
super.description = "ask the user for a file (will be accessible as a blob url to other tools)",
super.title = "ask user for file",
}) : super(inputSchema: askUserForFileSchema);