我已经能够使用file picker package打开我的文件,但我需要将结果路径保存到pdfFile变量。
这就是变量
File? pdfFile;
我从下面的代码中得到错误
onPressed: () async {
FilePickerResult? result = await FilePicker.platform.pickFiles(
type: FileType.custom,
allowMultiple: false,
); //allowedExtensions: ['pdf', 'doc']);
if (result == null) return;
final path = result.files.single.path;
setState(() {
pdfFile = File(path); //2 positional argument(s) expected, but 1 found. and The argument type 'String?' can't be assigned to the parameter type 'List<Object>'.
});
}
2条答案
按热度按时间kse8i1jr1#
确保
import
部分正确。iezvtpos2#
有两个错误。
1.需要两个参数,但您只发送了一个
1.参数请求一个列表,但您发送的是可选字符串。