call method
Implementation
@override
Object call(Interpreter interpreter, List<Object?> arguments,
Map<Symbol, Object?> namedArguments) {
return getDownloadsDirectory().then((path) {
if (path == null) return null;
return IDirectory(path);
});
}