Does the flutter_absolute_path v1.0.6 dependency not support null safety? Is there any other solution to get absolute path of a file?
for (int i = 0; i < resultList.length; i++) {
var path = await
FlutterAbsolutePath.getAbsolutePath(resultList[i].identifier);
print(path + '**path**');
f.add(File(path));
}