AskUserForFile constructor

AskUserForFile({
  1. required BuildContext context,
  2. String name = "ask_user_for_file",
  3. String description = "ask the user for a file (will be accessible as a blob url to other tools)",
  4. 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);